aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dto/MetadataEditorInfo.cs
blob: 9bd15fc8f629efce9bc123e5f16a3b6d9f8ad109 (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
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Providers;
using System.Collections.Generic;

namespace MediaBrowser.Model.Dto
{
    public class MetadataEditorInfo
    {
        public List<ParentalRating> ParentalRatingOptions { get; set; }
        public List<CountryInfo> Countries { get; set; }
        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>();
        }
    }
}