mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
21 lines
403 B
C#
21 lines
403 B
C#
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
|
|
}
|
|
} |