mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-05 21:57:04 +02:00
19 lines
335 B
C#
19 lines
335 B
C#
namespace MediaBrowser.Model.Updates
|
|
{
|
|
/// <summary>
|
|
/// Enum PackageVersionClass.
|
|
/// </summary>
|
|
public enum ReleaseChannel
|
|
{
|
|
/// <summary>
|
|
/// The stable.
|
|
/// </summary>
|
|
Stable = 0,
|
|
|
|
/// <summary>
|
|
/// The nightly.
|
|
/// </summary>
|
|
Nightly = 1
|
|
}
|
|
}
|