36 lines
969 B
C#
36 lines
969 B
C#
namespace MediaBrowser.Model.LiveTv
|
|
{
|
|
/// <summary>
|
|
/// Class RecordingQuery.
|
|
/// </summary>
|
|
public class RecordingQuery
|
|
{
|
|
/// <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; }
|
|
}
|
|
|
|
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; }
|
|
}
|
|
}
|