diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-12-21 13:58:17 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-12-21 13:58:17 -0500 |
| commit | 74520804f80974ec018a6c45f4e221276ded4cd3 (patch) | |
| tree | 6315b8ab2ab96d4e2006148a7c0615ce0e9ff0ea /MediaBrowser.Model/Dto/MetadataEditorInfo.cs | |
| parent | 659128073eda8178de75f2234467b03da747691c (diff) | |
start on content type setting
Diffstat (limited to 'MediaBrowser.Model/Dto/MetadataEditorInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Dto/MetadataEditorInfo.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dto/MetadataEditorInfo.cs b/MediaBrowser.Model/Dto/MetadataEditorInfo.cs index 66bdb8ce3..9bd15fc8f 100644 --- a/MediaBrowser.Model/Dto/MetadataEditorInfo.cs +++ b/MediaBrowser.Model/Dto/MetadataEditorInfo.cs @@ -12,12 +12,16 @@ namespace MediaBrowser.Model.Dto public List<CultureDto> Cultures { get; set; } public List<ExternalIdInfo> ExternalIdInfos { get; set; } + public string ContentType { get; set; } + public List<NameValuePair> ContentTypeOptions { get; set; } + public MetadataEditorInfo() { ParentalRatingOptions = new List<ParentalRating>(); Countries = new List<CountryInfo>(); Cultures = new List<CultureDto>(); ExternalIdInfos = new List<ExternalIdInfo>(); + ContentTypeOptions = new List<NameValuePair>(); } } } |
