jellyfin-server/MediaBrowser.Model/Dto/MetadataEditorInfo.cs

35 lines
962 B
C#
Raw Normal View History

#nullable disable
2020-02-04 00:49:27 +00:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Entities;
2018-12-27 23:27:57 +00:00
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Providers;
namespace MediaBrowser.Model.Dto
{
public class MetadataEditorInfo
{
public ParentalRating[] ParentalRatingOptions { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public CountryInfo[] Countries { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public CultureDto[] Cultures { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public ExternalIdInfo[] ExternalIdInfos { get; set; }
public string ContentType { get; set; }
2020-06-15 21:43:52 +00:00
2018-12-27 23:27:57 +00:00
public NameValuePair[] ContentTypeOptions { get; set; }
public MetadataEditorInfo()
{
2018-12-27 21:43:48 +00:00
ParentalRatingOptions = Array.Empty<ParentalRating>();
Countries = Array.Empty<CountryInfo>();
Cultures = Array.Empty<CultureDto>();
ExternalIdInfos = Array.Empty<ExternalIdInfo>();
ContentTypeOptions = Array.Empty<NameValuePair>();
2018-12-27 23:27:57 +00:00
}
}
}