mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 18:08:53 -07:00
55 lines
1.4 KiB
C#
55 lines
1.4 KiB
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 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; }
|
|
}
|
|
|
|
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
|
|
{
|
|
}
|
|
}
|