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; }
    }
}