You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/LiveTv/LiveTvInfo.cs

31 lines
903 B

using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvInfo
{
/// <summary>
/// Gets or sets the services.
/// </summary>
/// <value>The services.</value>
public List<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>
public List<string> EnabledUsers { get; set; }
public LiveTvInfo()
{
Services = new List<LiveTvServiceInfo>();
EnabledUsers = new List<string>();
}
}
}