2020-02-03 17:49:27 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 13:02:23 -07:00
|
|
|
using System;
|
2022-01-22 07:40:05 -07:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 12:26:15 -07:00
|
|
|
using MediaBrowser.Model.Entities;
|
2018-12-27 16:27:57 -07:00
|
|
|
using MediaBrowser.Model.Globalization;
|
|
|
|
using MediaBrowser.Model.Providers;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dto
|
|
|
|
{
|
|
|
|
public class MetadataEditorInfo
|
|
|
|
{
|
2021-02-20 15:13:04 -07:00
|
|
|
public MetadataEditorInfo()
|
|
|
|
{
|
|
|
|
ParentalRatingOptions = Array.Empty<ParentalRating>();
|
|
|
|
Countries = Array.Empty<CountryInfo>();
|
|
|
|
Cultures = Array.Empty<CultureDto>();
|
|
|
|
ExternalIdInfos = Array.Empty<ExternalIdInfo>();
|
|
|
|
ContentTypeOptions = Array.Empty<NameValuePair>();
|
|
|
|
}
|
|
|
|
|
2022-01-22 07:40:05 -07:00
|
|
|
public IReadOnlyList<ParentalRating> ParentalRatingOptions { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2022-01-22 07:40:05 -07:00
|
|
|
public IReadOnlyList<CountryInfo> Countries { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2022-01-22 07:40:05 -07:00
|
|
|
public IReadOnlyList<CultureDto> Cultures { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2022-01-22 07:40:05 -07:00
|
|
|
public IReadOnlyList<ExternalIdInfo> ExternalIdInfos { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
|
2022-01-22 07:40:05 -07:00
|
|
|
public string? ContentType { get; set; }
|
2020-06-15 14:43:52 -07:00
|
|
|
|
2022-01-22 07:40:05 -07:00
|
|
|
public IReadOnlyList<NameValuePair> ContentTypeOptions { get; set; }
|
2018-12-27 16:27:57 -07:00
|
|
|
}
|
|
|
|
}
|