using System;
namespace MediaBrowser.Model.LiveTv
{
public class EpgInfo
{
///
/// Id of the program.
///
public string Id { get; set; }
///
/// Description of the progam.
///
public string Description { get; set; }
///
/// The start date of the program, in UTC.
///
public DateTime StartDate { get; set; }
///
/// The end date of the program, in UTC.
///
public DateTime EndDate { get; set; }
///
/// Genre of the program.
///
public string Genre { get; set; }
}
}