namespace MediaBrowser.Model.Providers { public class ExternalIdInfo { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the key. /// /// The key. public string Key { get; set; } /// /// Gets or sets the URL format string. /// /// The URL format string. public string UrlFormatString { get; set; } } public class ExternalUrl { /// /// Gets or sets the name. /// /// The name. public string Name { get; set; } /// /// Gets or sets the type of the item. /// /// The type of the item. public string Url { get; set; } } }