#nullable disable #pragma warning disable CS1591 using System; using System.Collections.Generic; using MediaBrowser.Model.LiveTv; namespace MediaBrowser.Controller.LiveTv { public class SeriesTimerInfo { public SeriesTimerInfo() { Days = new List(); SkipEpisodesInLibrary = true; KeepUntil = KeepUntil.UntilDeleted; } /// /// Gets or sets the id of the recording. /// public string Id { get; set; } /// /// Gets or sets the channelId of the recording. /// public string ChannelId { get; set; } /// /// Gets or sets the program identifier. /// /// The program identifier. public string ProgramId { get; set; } /// /// Gets or sets the name of the recording. /// public string Name { get; set; } /// /// Gets or sets the service name. /// public string ServiceName { get; set; } /// /// Gets or sets the description of the recording. /// public string Overview { get; set; } /// /// Gets or sets the start date of the recording, in UTC. /// public DateTime StartDate { get; set; } /// /// Gets or sets the end date of the recording, in UTC. /// public DateTime EndDate { get; set; } /// /// Gets or sets a value indicating whether [record any time]. /// /// true if [record any time]; otherwise, false. public bool RecordAnyTime { get; set; } /// /// Gets or sets a value indicating whether [record any channel]. /// /// true if [record any channel]; otherwise, false. public bool RecordAnyChannel { get; set; } public int KeepUpTo { get; set; } public KeepUntil KeepUntil { get; set; } public bool SkipEpisodesInLibrary { get; set; } /// /// Gets or sets a value indicating whether [record new only]. /// /// true if [record new only]; otherwise, false. public bool RecordNewOnly { get; set; } /// /// Gets or sets the days. /// /// The days. public List Days { get; set; } /// /// Gets or sets the priority. /// /// The priority. public int Priority { get; set; } /// /// Gets or sets the pre padding seconds. /// /// The pre padding seconds. public int PrePaddingSeconds { get; set; } /// /// Gets or sets the post padding seconds. /// /// The post padding seconds. public int PostPaddingSeconds { get; set; } /// /// Gets or sets a value indicating whether this instance is pre padding required. /// /// true if this instance is pre padding required; otherwise, false. public bool IsPrePaddingRequired { get; set; } /// /// Gets or sets a value indicating whether this instance is post padding required. /// /// true if this instance is post padding required; otherwise, false. public bool IsPostPaddingRequired { get; set; } /// /// Gets or sets the series identifier. /// /// The series identifier. public string SeriesId { get; set; } } }