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.
36 lines
858 B
36 lines
858 B
using System;
|
|
|
|
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 DateTime? MinStartDate { get; set; }
|
|
|
|
public DateTime? MaxStartDate { get; set; }
|
|
|
|
public DateTime? MinEndDate { get; set; }
|
|
|
|
public DateTime? MaxEndDate { get; set; }
|
|
|
|
public ProgramQuery()
|
|
{
|
|
ChannelIdList = new string[] { };
|
|
}
|
|
}
|
|
}
|