jellyfin-server/MediaBrowser.Model/LiveTv/RecordingQuery.cs

21 lines
541 B
C#
Raw Normal View History

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