2014-02-21 18:48:15 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Providers
|
|
|
|
|
{
|
|
|
|
|
public class ExternalIdInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The key.</value>
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-02-21 21:44:10 +00:00
|
|
|
|
/// Gets or sets the URL format string.
|
2014-02-21 18:48:15 +00:00
|
|
|
|
/// </summary>
|
2014-02-21 21:44:10 +00:00
|
|
|
|
/// <value>The URL format string.</value>
|
|
|
|
|
public string UrlFormatString { get; set; }
|
2014-02-21 18:48:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|