You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
962 B
35 lines
962 B
#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 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>();
|
|
Countries = Array.Empty<CountryInfo>();
|
|
Cultures = Array.Empty<CultureDto>();
|
|
ExternalIdInfos = Array.Empty<ExternalIdInfo>();
|
|
ContentTypeOptions = Array.Empty<NameValuePair>();
|
|
}
|
|
}
|
|
}
|