using System;
using System.Collections.Generic;
namespace MediaBrowser.Controller.LiveTv
{
public class ProgramInfo
{
///
/// Id of the program.
///
public string Id { get; set; }
///
/// Gets or sets the channel identifier.
///
/// The channel identifier.
public string ChannelId { get; set; }
///
/// Name of the program
///
public string Name { 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 List Genres { get; set; }
public ProgramInfo()
{
Genres = new List();
}
}
}