Add targetSystem to PackageInfo

This commit is contained in:
Eric Reed
2013-04-03 14:18:36 -04:00
parent 9363281fb6
commit 8adfb36f4c
4 changed files with 32 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
namespace MediaBrowser.Model.Updates
{
/// <summary>
/// Enum PackageType
/// </summary>
public enum PackageTargetSystem
{
/// <summary>
/// Server
/// </summary>
Server,
/// <summary>
/// MB Theater
/// </summary>
MBTheater,
/// <summary>
/// MB Classic
/// </summary>
MBClassic
}
}