diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/ApiBaseItem.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/ApiBaseItem.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Entities/ApiBaseItem.cs b/MediaBrowser.Model/Entities/ApiBaseItem.cs index e6bd71654..e40fdc25f 100644 --- a/MediaBrowser.Model/Entities/ApiBaseItem.cs +++ b/MediaBrowser.Model/Entities/ApiBaseItem.cs @@ -11,14 +11,9 @@ namespace MediaBrowser.Model.Entities public class ApiBaseItem : BaseItem
{
// TV Series
- public string TvdbId { get; set; }
public string Status { get; set; }
public IEnumerable<DayOfWeek> AirDays { get; set; }
public string AirTime { get; set; }
-
- // Movie
- public string TmdbId { get; set; }
- public string ImdbId { get; set; }
}
/// <summary>
@@ -49,6 +44,8 @@ namespace MediaBrowser.Model.Entities return Type.Equals(type, StringComparison.OrdinalIgnoreCase);
}
+ public IEnumerable<PersonInfo> People { get; set; }
+
/// <summary>
/// If the item does not have a logo, this will hold the Id of the Parent that has one.
/// </summary>
|
