jellyfin-server/MediaBrowser.Model/LiveTv/LiveTvInfo.cs

31 lines
891 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvInfo
{
/// <summary>
/// Gets or sets the services.
/// </summary>
/// <value>The services.</value>
2017-08-19 19:43:35 +00:00
public LiveTvServiceInfo[] Services { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is enabled.
/// </summary>
/// <value><c>true</c> if this instance is enabled; otherwise, <c>false</c>.</value>
public bool IsEnabled { get; set; }
/// <summary>
/// Gets or sets the enabled users.
/// </summary>
/// <value>The enabled users.</value>
2017-08-19 19:43:35 +00:00
public string[] EnabledUsers { get; set; }
public LiveTvInfo()
{
2017-08-19 19:43:35 +00:00
Services = new LiveTvServiceInfo[] { };
EnabledUsers = new string[] { };
}
}
}