using System.Collections.Generic; using MediaBrowser.Model.LiveTv; namespace MediaBrowser.Controller.LiveTv { public class LiveTvTunerInfo { /// /// 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 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 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 LiveTvTunerInfo() { Clients = new List(); } } }