using System.Collections.Generic;
namespace MediaBrowser.Model.LiveTv
{
public class EpgFullInfo
{
///
/// ChannelId for the EPG.
///
public string ChannelId { get; set; }
///
/// List of all the programs for a specific channel
///
public List EpgInfos { get; set; }
}
}