MetadataEditorInfo.cs 906 B

123456789101112131415161718192021222324252627
  1. using MediaBrowser.Model.Entities;
  2. using MediaBrowser.Model.Globalization;
  3. using MediaBrowser.Model.Providers;
  4. using System.Collections.Generic;
  5. namespace MediaBrowser.Model.Dto
  6. {
  7. public class MetadataEditorInfo
  8. {
  9. public ParentalRating[] ParentalRatingOptions { get; set; }
  10. public CountryInfo[] Countries { get; set; }
  11. public CultureDto[] Cultures { get; set; }
  12. public ExternalIdInfo[] ExternalIdInfos { get; set; }
  13. public string ContentType { get; set; }
  14. public NameValuePair[] ContentTypeOptions { get; set; }
  15. public MetadataEditorInfo()
  16. {
  17. ParentalRatingOptions = new ParentalRating[] { };
  18. Countries = new CountryInfo[] { };
  19. Cultures = new CultureDto[] { };
  20. ExternalIdInfos = new ExternalIdInfo[] { };
  21. ContentTypeOptions = new NameValuePair[] { };
  22. }
  23. }
  24. }