jellyfin/MediaBrowser.Model/Dto/MetadataEditorInfo.cs

35 lines
962 B
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Entities;
2018-12-27 18:27:57 -05:00
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>();
}
2018-12-27 18:27:57 -05:00
public ParentalRating[] ParentalRatingOptions { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public CountryInfo[] Countries { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public CultureDto[] Cultures { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public ExternalIdInfo[] ExternalIdInfos { get; set; }
public string ContentType { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public NameValuePair[] ContentTypeOptions { get; set; }
}
}