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