aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/MetadataEditorInfo.cs
blob: e0e889f7d058351f9e5b0856d58fdfe34b84c11c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#nullable disable
#pragma warning disable CS1591

using System;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Providers;

namespace MediaBrowser.Model.Dto
{
    public class MetadataEditorInfo
    {
        public MetadataEditorInfo()
        {
            ParentalRatingOptions = Array.Empty<ParentalRating>();
            Countries = Array.Empty<CountryInfo>();
            Cultures = Array.Empty<CultureDto>();
            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; }
    }
}