jellyfin/MediaBrowser.Model/LiveTv/ProgramQuery.cs

36 lines
858 B
C#
Raw Normal View History

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