1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
namespace MediaBrowser.Model.Updates { /// <summary> /// Enum PackageVersionClass. /// </summary> public enum ReleaseChannel { /// <summary> /// The stable. /// </summary> Stable = 0, /// <summary> /// The nightly. /// </summary> Nightly = 1 } }