diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-08-04 00:42:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-04 00:42:17 -0400 |
| commit | 8e3178ec0fe5a2a144399692d5acb507a9ca287f (patch) | |
| tree | edbe6f86b2f61007c84b48f9fabbea09e77f1bca /MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | |
| parent | a5e0185da28bad907cb543dc3116fa73a40dee63 (diff) | |
| parent | 39245133f805e75164556fad9135e4f56925c33f (diff) | |
Merge pull request #2017 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalPeopleQuery.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/InternalPeopleQuery.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs index 05d23d986..2ba6842ca 100644 --- a/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs +++ b/MediaBrowser.Controller/Entities/InternalPeopleQuery.cs @@ -11,11 +11,13 @@ namespace MediaBrowser.Controller.Entities public int? MaxListOrder { get; set; } public Guid AppearsInItemId { get; set; } public string NameContains { get; set; } + public SourceType[] SourceTypes { get; set; } public InternalPeopleQuery() { PersonTypes = new List<string>(); ExcludePersonTypes = new List<string>(); + SourceTypes = new SourceType[] { }; } } } |
