You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
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 user identifier.
|
|
/// </summary>
|
|
/// <value>The user identifier.</value>
|
|
public string UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the identifier.
|
|
/// </summary>
|
|
/// <value>The identifier.</value>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the group identifier.
|
|
/// </summary>
|
|
/// <value>The group identifier.</value>
|
|
public string GroupId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Skips over a given number of items within the results. Use for paging.
|
|
/// </summary>
|
|
/// <value>The start index.</value>
|
|
public int? StartIndex { get; set; }
|
|
|
|
/// <summary>
|
|
/// The maximum number of items to return
|
|
/// </summary>
|
|
/// <value>The limit.</value>
|
|
public int? Limit { get; set; }
|
|
}
|
|
|
|
public class RecordingGroupQuery
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the user identifier.
|
|
/// </summary>
|
|
/// <value>The user identifier.</value>
|
|
public string UserId { get; set; }
|
|
}
|
|
|
|
public class TimerQuery
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the channel identifier.
|
|
/// </summary>
|
|
/// <value>The channel identifier.</value>
|
|
public string ChannelId { get; set; }
|
|
}
|
|
|
|
public class SeriesTimerQuery
|
|
{
|
|
}
|
|
}
|