jellyfin/MediaBrowser.Model/LiveTv/RecordingQuery.cs

24 lines
577 B
C#
Raw Normal View History

2013-11-15 22:31:33 +01:00
namespace MediaBrowser.Model.LiveTv
{
/// <summary>
/// Class RecordingQuery.
/// </summary>
public class RecordingQuery
{
2013-11-26 22:36:11 +01:00
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
2013-11-25 21:39:23 +01:00
public string ChannelId { get; set; }
2013-11-15 22:31:33 +01:00
}
2013-11-27 20:04:19 +01:00
public class TimerQuery
{
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
public string ChannelId { get; set; }
}
2013-11-15 22:31:33 +01:00
}