You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Providers/ExternalIdInfo.cs

31 lines
1002 B

6 years ago
namespace MediaBrowser.Model.Providers
{
/// <summary>
/// Represents the external id information for serialization to the client.
/// </summary>
6 years ago
public class ExternalIdInfo
{
/// <summary>
/// Gets or sets the name of the external id provider (IE: IMDB, MusicBrainz, etc).
6 years ago
/// </summary>
public string Name { get; set; }
/// <summary>
/// Gets or sets the unique key for this id. This key should be unique across all providers.
6 years ago
/// </summary>
public string Key { get; set; }
/// <summary>
/// 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.
/// </summary>
public string Type { get; set; }
6 years ago
/// <summary>
/// Gets or sets the URL format string.
/// </summary>
public string UrlFormatString { get; set; }
}
}