diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-16 15:16:29 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-16 15:16:29 -0400 |
| commit | 26aa47eefddf89a00ad64ab19af31b511142040d (patch) | |
| tree | 39c4d65ba0bec28dbedaf79a0884f8a5010d9fab /MediaBrowser.Controller/Entities/Trailer.cs | |
| parent | 20bcc40e2305f2a2623007701cf3da9fea72b20e (diff) | |
move people page into main editor
Diffstat (limited to 'MediaBrowser.Controller/Entities/Trailer.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Trailer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Trailer.cs b/MediaBrowser.Controller/Entities/Trailer.cs index 53ec030a7..569334ec3 100644 --- a/MediaBrowser.Controller/Entities/Trailer.cs +++ b/MediaBrowser.Controller/Entities/Trailer.cs @@ -12,11 +12,12 @@ namespace MediaBrowser.Controller.Entities /// <summary> /// Class Trailer /// </summary> - public class Trailer : Video, IHasCriticRating, IHasSoundtracks, IHasBudget, IHasTrailers, IHasKeywords, IHasTaglines, IHasPreferredMetadataLanguage, IHasMetascore, IHasLookupInfo<TrailerInfo> + public class Trailer : Video, IHasCriticRating, IHasSoundtracks, IHasProductionLocations, IHasBudget, IHasTrailers, IHasKeywords, IHasTaglines, IHasPreferredMetadataLanguage, IHasMetascore, IHasLookupInfo<TrailerInfo> { public List<Guid> SoundtrackIds { get; set; } public string PreferredMetadataLanguage { get; set; } + public List<string> ProductionLocations { get; set; } /// <summary> /// Gets or sets the preferred metadata country code. @@ -31,6 +32,7 @@ namespace MediaBrowser.Controller.Entities SoundtrackIds = new List<Guid>(); LocalTrailerIds = new List<Guid>(); Keywords = new List<string>(); + ProductionLocations = new List<string>(); } public float? Metascore { get; set; } |
