Files
jellyfin-jellyfin-1/MediaBrowser.Model/LiveTv/ProgramQuery.cs

36 lines
858 B
C#
Raw Normal View History

2014-01-05 20:59:21 -05:00
using System;
namespace MediaBrowser.Model.LiveTv
2013-11-25 11:15:31 -05:00
{
/// <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-25 21:53:48 -05:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
2014-01-05 20:59:21 -05:00
public DateTime? MinStartDate { get; set; }
public DateTime? MaxStartDate { get; set; }
public DateTime? MinEndDate { get; set; }
public DateTime? MaxEndDate { get; set; }
2013-11-25 11:15:31 -05:00
public ProgramQuery()
{
ChannelIdList = new string[] { };
}
}
}