using MediaBrowser.Model.Entities; using MediaBrowser.Model.Globalization; using MediaBrowser.Model.Providers; using System.Collections.Generic; namespace MediaBrowser.Model.Dto { public class MetadataEditorInfo { public List ParentalRatingOptions { get; set; } public List Countries { get; set; } public List Cultures { get; set; } public List ExternalIdInfos { get; set; } public MetadataEditorInfo() { ParentalRatingOptions = new List(); Countries = new List(); Cultures = new List(); ExternalIdInfos = new List(); } } }