using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.LiveTv
{
public class RecordingInfoDto
{
///
/// Id of the recording.
///
public string Id { get; set; }
///
/// Gets or sets the external identifier.
///
/// The external identifier.
public string ExternalId { get; set; }
///
/// Gets or sets the program identifier.
///
/// The program identifier.
public string ProgramId { get; set; }
///
/// ChannelId of the recording.
///
public string ChannelId { get; set; }
///
/// ChannelName of the recording.
///
public string ChannelName { get; set; }
///
/// Gets or sets the name of the service.
///
/// The name of the service.
public string ServiceName { get; set; }
///
/// Name of the recording.
///
public string Name { get; set; }
///
/// Gets or sets the path.
///
/// The path.
public string Path { get; set; }
///
/// Gets or sets the URL.
///
/// The URL.
public string Url { get; set; }
///
/// Overview of the recording.
///
public string Overview { get; set; }
///
/// The start date of the recording, in UTC.
///
public DateTime StartDate { get; set; }
///
/// The end date of the recording, in UTC.
///
public DateTime EndDate { get; set; }
///
/// Gets or sets the status.
///
/// The status.
public RecordingStatus Status { get; set; }
///
/// Genre of the program.
///
public List Genres { get; set; }
///
/// Gets or sets a value indicating whether this instance is repeat.
///
/// true if this instance is repeat; otherwise, false.
public bool IsRepeat { get; set; }
///
/// Gets or sets the episode title.
///
/// The episode title.
public string EpisodeTitle { get; set; }
///
/// Gets or sets the duration ms.
///
/// The duration ms.
public int DurationMs { get; set; }
///
/// Gets or sets the type of the media.
///
/// The type of the media.
public string MediaType { get; set; }
///
/// Gets or sets the type of the channel.
///
/// The type of the channel.
public ChannelType ChannelType { get; set; }
///
/// Gets or sets the official rating.
///
/// The official rating.
public string OfficialRating { get; set; }
///
/// Gets or sets the community rating.
///
/// The community rating.
public float? CommunityRating { get; set; }
///
/// Gets or sets a value indicating whether this instance is hd.
///
/// true if this instance is hd; otherwise, false.
public bool? IsHD { get; set; }
///
/// Gets or sets the audio.
///
/// The audio.
public ProgramAudio? Audio { get; set; }
///
/// Gets or sets the user data.
///
/// The user data.
public UserItemDataDto UserData { get; set; }
public RecordingInfoDto()
{
Genres = new List();
}
}
}