jellyfin/MediaBrowser.Model/LiveTv/ProgramQuery.cs

26 lines
627 B
C#
Raw Normal View History

2013-11-25 17:15:31 +01:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class ProgramQuery.
/// </summary>
public class ProgramQuery
{
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
public string[] ChannelIdList { get; set; }
2013-11-26 03:53:48 +01:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
2013-11-25 17:15:31 +01:00
public ProgramQuery()
{
ChannelIdList = new string[] { };
}
}
}