26 lines
627 B
C#
26 lines
627 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the user identifier.
|
|
/// </summary>
|
|
/// <value>The user identifier.</value>
|
|
public string UserId { get; set; }
|
|
|
|
public ProgramQuery()
|
|
{
|
|
ChannelIdList = new string[] { };
|
|
}
|
|
}
|
|
}
|