#nullable disable
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.LiveTv
{
public class BaseTimerInfoDto : IHasServerId
{
///
/// Gets or sets the Id of the recording.
///
public string Id { get; set; }
public string Type { get; set; }
///
/// Gets or sets the server identifier.
///
/// The server identifier.
public string ServerId { get; set; }
///
/// Gets or sets the external identifier.
///
/// The external identifier.
public string ExternalId { get; set; }
///
/// Gets or sets the channel id of the recording.
///
public Guid ChannelId { get; set; }
///
/// Gets or sets the external channel identifier.
///
/// The external channel identifier.
public string ExternalChannelId { get; set; }
///
/// Gets or sets the channel name of the recording.
///
public string ChannelName { get; set; }
public string ChannelPrimaryImageTag { get; set; }
///
/// Gets or sets the program identifier.
///
/// The program identifier.
public string ProgramId { get; set; }
///
/// Gets or sets the external program identifier.
///
/// The external program identifier.
public string ExternalProgramId { get; set; }
///
/// Gets or sets the name of the recording.
///
public string Name { 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 the name of the service.
///
/// The name of the service.
public string ServiceName { 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 the Id of the Parent that has a backdrop if the item does not have one.
///
/// The parent backdrop item id.
public string ParentBackdropItemId { get; set; }
///
/// Gets or sets the parent backdrop image tags.
///
/// The parent backdrop image tags.
public string[] ParentBackdropImageTags { 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; }
public KeepUntil KeepUntil { get; set; }
}
}