jellyfin/MediaBrowser.Model/LiveTv/RecordingQuery.cs

21 lines
541 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-26 22:36:11 +01: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 22:31:33 +01:00
}
}