diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-15 16:31:33 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-15 16:31:33 -0500 |
| commit | a09e330d4e3ee9cea57f3568c8684dce66c44142 (patch) | |
| tree | f4869dd400031b42d2fdd5ad635c8bd933d22e6a /MediaBrowser.Model/LiveTv/ProgramInfo.cs | |
| parent | cc16fd3af88fe3bfdc68d026e63609e41ffd1628 (diff) | |
Display specials within seasons
Diffstat (limited to 'MediaBrowser.Model/LiveTv/ProgramInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/LiveTv/ProgramInfo.cs | 37 |
1 files changed, 37 insertions, 0 deletions
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 + { + /// <summary> + /// Id of the program. + /// </summary> + public string Id { get; set; } + + /// <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> + public string Genre { get; set; } + } +}
\ No newline at end of file |
