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 type of the item. /// /// The type of the item. public string ItemType { get; set; } /// /// Gets or sets the format string. /// /// The format string. public string FormatString { 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; } } }