using System; using System.Collections.Generic; namespace MediaBrowser.Model.LiveTv { /// /// Class ServiceInfo /// public class LiveTvServiceInfo { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } } public class GuideInfo { /// /// Gets or sets the start date. /// /// The start date. public DateTime StartDate { get; set; } /// /// Gets or sets the end date. /// /// The end date. public DateTime EndDate { get; set; } } public class LiveTvInfo { /// /// Gets or sets the services. /// /// The services. public List Services { get; set; } /// /// Gets or sets the name of the active service. /// /// The name of the active service. public string ActiveServiceName { get; set; } public LiveTvInfo() { Services = new List(); } } }