Files
jellyfin-jellyfin-1/MediaBrowser.Controller/LiveTv/ProgramInfo.cs

50 lines
1.2 KiB
C#
Raw Normal View History

2013-11-15 16:31:33 -05:00
using System;
2013-11-25 15:39:23 -05:00
using System.Collections.Generic;
2013-11-15 16:31:33 -05:00
2013-11-25 15:39:23 -05:00
namespace MediaBrowser.Controller.LiveTv
2013-11-15 16:31:33 -05:00
{
public class ProgramInfo
{
/// <summary>
/// Id of the program.
/// </summary>
public string Id { get; set; }
2013-11-25 11:15:31 -05:00
/// <summary>
/// Gets or sets the channel identifier.
/// </summary>
/// <value>The channel identifier.</value>
public string ChannelId { get; set; }
2013-11-15 16:31:33 -05:00
/// <summary>
/// Name of the program
/// </summary>
public string Name { get; set; }
/// <summary>
/// Description of the progam.
/// </summary>
public string Description { get; set; }
/// <summary>
/// The start date of the program, in UTC.
/// </summary>
public DateTime StartDate { get; set; }
/// <summary>
/// The end date of the program, in UTC.
/// </summary>
public DateTime EndDate { get; set; }
/// <summary>
/// Genre of the program.
/// </summary>
2013-11-25 15:39:23 -05:00
public List<string> Genres { get; set; }
public ProgramInfo()
{
Genres = new List<string>();
}
2013-11-15 16:31:33 -05:00
}
2013-11-25 15:39:23 -05:00
}