From a09e330d4e3ee9cea57f3568c8684dce66c44142 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 15 Nov 2013 16:31:33 -0500 Subject: Display specials within seasons --- MediaBrowser.Model/LiveTv/ProgramInfo.cs | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 MediaBrowser.Model/LiveTv/ProgramInfo.cs (limited to 'MediaBrowser.Model/LiveTv/ProgramInfo.cs') diff --git a/MediaBrowser.Model/LiveTv/ProgramInfo.cs b/MediaBrowser.Model/LiveTv/ProgramInfo.cs new file mode 100644 index 000000000..6bf0e383f --- /dev/null +++ b/MediaBrowser.Model/LiveTv/ProgramInfo.cs @@ -0,0 +1,37 @@ +using System; + +namespace MediaBrowser.Model.LiveTv +{ + public class ProgramInfo + { + /// + /// Id of the program. + /// + public string Id { 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 string Genre { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3