MetadataEditorInfo.cs 936 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 List<ParentalRating> ParentalRatingOptions { get; set; }
  10. public List<CountryInfo> Countries { get; set; }
  11. public List<CultureDto> Cultures { get; set; }
  12. public List<ExternalIdInfo> ExternalIdInfos { get; set; }
  13. public string ContentType { get; set; }
  14. public List<NameValuePair> ContentTypeOptions { get; set; }
  15. public MetadataEditorInfo()
  16. {
  17. ParentalRatingOptions = new List<ParentalRating>();
  18. Countries = new List<CountryInfo>();
  19. Cultures = new List<CultureDto>();
  20. ExternalIdInfos = new List<ExternalIdInfo>();
  21. ContentTypeOptions = new List<NameValuePair>();
  22. }
  23. }
  24. }