//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
#nullable disable
#pragma warning disable CS1591
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; }
}