jellyfin/MediaBrowser.Model/Dto/MetadataEditorInfo.cs

28 lines
906 B
C#
Raw Normal View History

2014-12-21 06:57:06 +01:00
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.Globalization;
using MediaBrowser.Model.Providers;
using System.Collections.Generic;
namespace MediaBrowser.Model.Dto
{
public class MetadataEditorInfo
{
2017-08-19 21:43:35 +02:00
public ParentalRating[] ParentalRatingOptions { get; set; }
public CountryInfo[] Countries { get; set; }
public CultureDto[] Cultures { get; set; }
public ExternalIdInfo[] ExternalIdInfos { get; set; }
2014-12-21 06:57:06 +01:00
2014-12-21 19:58:17 +01:00
public string ContentType { get; set; }
2017-08-19 21:43:35 +02:00
public NameValuePair[] ContentTypeOptions { get; set; }
2014-12-21 19:58:17 +01:00
2014-12-21 06:57:06 +01:00
public MetadataEditorInfo()
{
2017-08-19 21:43:35 +02:00
ParentalRatingOptions = new ParentalRating[] { };
Countries = new CountryInfo[] { };
Cultures = new CultureDto[] { };
ExternalIdInfos = new ExternalIdInfo[] { };
ContentTypeOptions = new NameValuePair[] { };
2014-12-21 06:57:06 +01:00
}
}
}