From 8df1ebe49967ed96b85076bf4dbfbf761fb5268d Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 13 Apr 2014 13:27:13 -0400 Subject: add new mirror mode --- MediaBrowser.Model/Entities/BaseItemInfo.cs | 54 +++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) (limited to 'MediaBrowser.Model/Entities') diff --git a/MediaBrowser.Model/Entities/BaseItemInfo.cs b/MediaBrowser.Model/Entities/BaseItemInfo.cs index 824f8dc038..d1e897e362 100644 --- a/MediaBrowser.Model/Entities/BaseItemInfo.cs +++ b/MediaBrowser.Model/Entities/BaseItemInfo.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; using System.Diagnostics; using System.Runtime.Serialization; @@ -81,6 +82,54 @@ namespace MediaBrowser.Model.Entities /// /// The media version identifier. public string MediaSourceId { get; set; } + + /// + /// Gets or sets the premiere date. + /// + /// The premiere date. + public DateTime? PremiereDate { get; set; } + + /// + /// Gets or sets the production year. + /// + /// The production year. + public int? ProductionYear { get; set; } + + /// + /// Gets or sets the index number. + /// + /// The index number. + public int? IndexNumber { get; set; } + + /// + /// Gets or sets the index number end. + /// + /// The index number end. + public int? IndexNumberEnd { get; set; } + + /// + /// Gets or sets the parent index number. + /// + /// The parent index number. + public int? ParentIndexNumber { get; set; } + + /// + /// Gets or sets the name of the series. + /// + /// The name of the series. + public string SeriesName { get; set; } + + /// + /// Gets or sets the album. + /// + /// The album. + public string Album { get; set; } + + /// + /// Gets or sets the artists. + /// + /// The artists. + public List Artists { get; set; } /// /// Gets a value indicating whether this instance has primary image. @@ -91,5 +140,10 @@ namespace MediaBrowser.Model.Entities { get { return PrimaryImageTag.HasValue; } } + + public BaseItemInfo() + { + Artists = new List(); + } } } -- cgit v1.2.3