mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-08 00:39:25 +01:00
live tv updates
This commit is contained in:
@@ -23,6 +23,12 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// <value>The channel identifier.</value>
|
||||
public string ChannelId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the channel.
|
||||
/// </summary>
|
||||
/// <value>The name of the channel.</value>
|
||||
public string ChannelName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the community rating.
|
||||
/// </summary>
|
||||
|
||||
@@ -50,6 +50,12 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// <value>The path.</value>
|
||||
public string Path { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the URL.
|
||||
/// </summary>
|
||||
/// <value>The URL.</value>
|
||||
public string Url { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Overview of the recording.
|
||||
/// </summary>
|
||||
|
||||
@@ -14,15 +14,6 @@ namespace MediaBrowser.Model.LiveTv
|
||||
Error
|
||||
}
|
||||
|
||||
public enum RecurrenceType
|
||||
{
|
||||
Manual,
|
||||
NewProgramEventsOneChannel,
|
||||
AllProgramEventsOneChannel,
|
||||
NewProgramEventsAllChannels,
|
||||
AllProgramEventsAllChannels
|
||||
}
|
||||
|
||||
public enum DayPattern
|
||||
{
|
||||
Daily,
|
||||
|
||||
@@ -71,10 +71,22 @@ namespace MediaBrowser.Model.LiveTv
|
||||
public DateTime EndDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the type of the recurrence.
|
||||
/// Gets or sets a value indicating whether [record any time].
|
||||
/// </summary>
|
||||
/// <value>The type of the recurrence.</value>
|
||||
public RecurrenceType RecurrenceType { get; set; }
|
||||
/// <value><c>true</c> if [record any time]; otherwise, <c>false</c>.</value>
|
||||
public bool RecordAnyTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [record any channel].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [record any channel]; otherwise, <c>false</c>.</value>
|
||||
public bool RecordAnyChannel { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [record new only].
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [record new only]; otherwise, <c>false</c>.</value>
|
||||
public bool RecordNewOnly { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the days.
|
||||
|
||||
@@ -43,6 +43,12 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// <value>The program identifier.</value>
|
||||
public string ProgramId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the external program identifier.
|
||||
/// </summary>
|
||||
/// <value>The external program identifier.</value>
|
||||
public string ExternalProgramId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Name of the recording.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user