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/AdultVideo.cs | |
| parent | 20bcc40e2305f2a2623007701cf3da9fea72b20e (diff) | |
move people page into main editor
Diffstat (limited to 'MediaBrowser.Controller/Entities/AdultVideo.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/AdultVideo.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/AdultVideo.cs b/MediaBrowser.Controller/Entities/AdultVideo.cs index 9791f7cf7..00270accf 100644 --- a/MediaBrowser.Controller/Entities/AdultVideo.cs +++ b/MediaBrowser.Controller/Entities/AdultVideo.cs @@ -3,7 +3,7 @@ using MediaBrowser.Controller.Providers; namespace MediaBrowser.Controller.Entities { - public class AdultVideo : Video, IHasPreferredMetadataLanguage, IHasTaglines + public class AdultVideo : Video, IHasProductionLocations, IHasPreferredMetadataLanguage, IHasTaglines { /// <summary> /// Gets or sets the preferred metadata language. @@ -16,12 +16,14 @@ namespace MediaBrowser.Controller.Entities /// </summary> /// <value>The preferred metadata country code.</value> public string PreferredMetadataCountryCode { get; set; } + public List<string> ProductionLocations { get; set; } public List<string> Taglines { get; set; } public AdultVideo() { Taglines = new List<string>(); + ProductionLocations = new List<string>(); } public override bool BeforeMetadataRefresh() |
