namespace MediaBrowser.Model.Providers
{
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; }
}
}