using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
    public class LiveTvTunerInfoDto
    {
        /// 
        /// Gets or sets the type of the source.
        /// 
        /// The type of the source.
        public string SourceType { get; set; }
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the identifier.
        /// 
        /// The identifier.
        public string Id { get; set; }
        /// 
        /// Gets or sets the URL.
        /// 
        /// The URL.
        public string Url { get; set; }
        
        /// 
        /// Gets or sets the status.
        /// 
        /// The status.
        public LiveTvTunerStatus Status { get; set; }
        /// 
        /// Gets or sets the channel identifier.
        /// 
        /// The channel identifier.
        public string ChannelId { get; set; }
        /// 
        /// Gets or sets the name of the channel.
        /// 
        /// The name of the channel.
        public string ChannelName { get; set; }
        
        /// 
        /// Gets or sets the recording identifier.
        /// 
        /// The recording identifier.
        public string RecordingId { get; set; }
        /// 
        /// Gets or sets the name of the program.
        /// 
        /// The name of the program.
        public string ProgramName { get; set; }
        /// 
        /// Gets or sets the clients.
        /// 
        /// The clients.
        public List Clients { get; set; }
        public LiveTvTunerInfoDto()
        {
            Clients = new List();
        }
    }
}