2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.Providers
|
|
|
|
{
|
2020-03-26 21:26:12 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Represents the external id information for serialization to the client.
|
|
|
|
/// </summary>
|
2018-12-27 23:27:57 +00:00
|
|
|
public class ExternalIdInfo
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
/// Gets or sets the name of the external id provider (IE: IMDB, MusicBrainz, etc).
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
/// Gets or sets the unique key for this id. This key should be unique across all providers.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
2020-03-22 19:58:53 +00:00
|
|
|
/// <summary>
|
2020-03-26 21:26:12 +00:00
|
|
|
/// Gets or sets the media type (Album, Artist, etc).
|
|
|
|
/// This can be null if there is no specific type.
|
|
|
|
/// This string is also used to localize the media type on the client.
|
2020-03-22 19:58:53 +00:00
|
|
|
/// </summary>
|
|
|
|
public string Type { get; set; }
|
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the URL format string.
|
|
|
|
/// </summary>
|
|
|
|
public string UrlFormatString { get; set; }
|
|
|
|
}
|
|
|
|
}
|