2020-02-04 00:49:27 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2022-01-22 14:40:05 +00:00
|
|
|
using System.Collections.Generic;
|
2023-11-09 21:00:29 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2019-01-13 19:26:15 +00:00
|
|
|
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
|
|
|
|
{
|
2021-02-20 22:13:04 +00: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 14:40:05 +00:00
|
|
|
public IReadOnlyList<ParentalRating> ParentalRatingOptions { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2022-01-22 14:40:05 +00:00
|
|
|
public IReadOnlyList<CountryInfo> Countries { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2022-01-22 14:40:05 +00:00
|
|
|
public IReadOnlyList<CultureDto> Cultures { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2022-01-22 14:40:05 +00:00
|
|
|
public IReadOnlyList<ExternalIdInfo> ExternalIdInfos { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
|
2023-11-09 21:00:29 +00:00
|
|
|
public CollectionType? ContentType { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2022-01-22 14:40:05 +00:00
|
|
|
public IReadOnlyList<NameValuePair> ContentTypeOptions { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|