update plugin classes for nightly builds

This commit is contained in:
dkanada
2020-02-26 01:58:39 +09:00
parent 557b165f01
commit 974a04c129
18 changed files with 150 additions and 333 deletions

View File

@@ -0,0 +1,18 @@
namespace MediaBrowser.Model.Updates
{
/// <summary>
/// Enum PackageVersionClass.
/// </summary>
public enum ReleaseChannel
{
/// <summary>
/// The stable.
/// </summary>
Stable = 0,
/// <summary>
/// The nightly.
/// </summary>
Nightly = 1
}
}