namespace MediaBrowser.Model.LiveTv
{
///
/// Class RecordingQuery.
///
public class RecordingQuery
{
///
/// Gets or sets the channel identifier.
///
/// The channel identifier.
public string ChannelId { get; set; }
///
/// Gets or sets the user identifier.
///
/// The user identifier.
public string UserId { get; set; }
///
/// Gets or sets the identifier.
///
/// The identifier.
public string Id { get; set; }
///
/// Gets or sets the group identifier.
///
/// The group identifier.
public string GroupId { get; set; }
///
/// Skips over a given number of items within the results. Use for paging.
///
/// The start index.
public int? StartIndex { get; set; }
///
/// The maximum number of items to return
///
/// The limit.
public int? Limit { get; set; }
}
public class RecordingGroupQuery
{
///
/// Gets or sets the user identifier.
///
/// The user identifier.
public string UserId { get; set; }
}
public class TimerQuery
{
///
/// Gets or sets the channel identifier.
///
/// The channel identifier.
public string ChannelId { get; set; }
}
public class SeriesTimerQuery
{
}
}