using System.Collections.Generic; namespace MediaBrowser.Model.LiveTv { public class ChannelGuide { /// /// Gets or sets the name of the service. /// /// The name of the service. public string ServiceName { get; set; } /// /// ChannelId for the EPG. /// public string ChannelId { get; set; } /// /// List of all the programs for a specific channel /// public List Programs { get; set; } } }