diff options
Diffstat (limited to 'MediaBrowser.Model/Dto/MetadataEditorInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/Dto/MetadataEditorInfo.cs | 23 |
1 files changed, 15 insertions, 8 deletions
diff --git a/MediaBrowser.Model/Dto/MetadataEditorInfo.cs b/MediaBrowser.Model/Dto/MetadataEditorInfo.cs index 46bcb62f4..e0e889f7d 100644 --- a/MediaBrowser.Model/Dto/MetadataEditorInfo.cs +++ b/MediaBrowser.Model/Dto/MetadataEditorInfo.cs @@ -1,3 +1,6 @@ +#nullable disable +#pragma warning disable CS1591 + using System; using MediaBrowser.Model.Entities; using MediaBrowser.Model.Globalization; @@ -7,14 +10,6 @@ namespace MediaBrowser.Model.Dto { public class MetadataEditorInfo { - public ParentalRating[] ParentalRatingOptions { get; set; } - public CountryInfo[] Countries { get; set; } - public CultureDto[] Cultures { get; set; } - public ExternalIdInfo[] ExternalIdInfos { get; set; } - - public string ContentType { get; set; } - public NameValuePair[] ContentTypeOptions { get; set; } - public MetadataEditorInfo() { ParentalRatingOptions = Array.Empty<ParentalRating>(); @@ -23,5 +18,17 @@ namespace MediaBrowser.Model.Dto ExternalIdInfos = Array.Empty<ExternalIdInfo>(); ContentTypeOptions = Array.Empty<NameValuePair>(); } + + public ParentalRating[] ParentalRatingOptions { get; set; } + + public CountryInfo[] Countries { get; set; } + + public CultureDto[] Cultures { get; set; } + + public ExternalIdInfo[] ExternalIdInfos { get; set; } + + public string ContentType { get; set; } + + public NameValuePair[] ContentTypeOptions { get; set; } } } |
