jellyfin/MediaBrowser.Model/LiveTv/RecordingQuery.cs

36 lines
969 B
C#
Raw Normal View History

2013-11-15 14:31:33 -07:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class RecordingQuery.
/// </summary>
public class RecordingQuery
{
2013-11-26 14:36:11 -07:00
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
2013-11-25 13:39:23 -07:00
public string ChannelId { get; set; }
2013-11-26 14:36:11 -07:00
/// <summary>
/// Gets or sets the name of the service.
/// </summary>
/// <value>The name of the service.</value>
public string ServiceName { get; set; }
2013-11-15 14:31:33 -07:00
}
2013-11-27 12:04:19 -07:00
public class TimerQuery
{
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
public string ChannelId { get; set; }
/// <summary>
/// Gets or sets the name of the service.
/// </summary>
/// <value>The name of the service.</value>
public string ServiceName { get; set; }
}
2013-11-15 14:31:33 -07:00
}