jellyfin/MediaBrowser.Model/LiveTv/LiveTvInfo.cs

34 lines
914 B
C#
Raw Normal View History

2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
2018-12-27 18:27:57 -05:00
using System;
namespace MediaBrowser.Model.LiveTv
{
public class LiveTvInfo
{
public LiveTvInfo()
{
Services = Array.Empty<LiveTvServiceInfo>();
EnabledUsers = Array.Empty<string>();
}
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets or sets the services.
/// </summary>
/// <value>The services.</value>
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>
public string[] EnabledUsers { get; set; }
}
2018-12-27 16:43:48 -05:00
}