Specify enum values for ExternalIdMediaType explicitly

pull/3137/head
Mark Monteiro 4 years ago
parent d06fee75b6
commit 07897ec7af

@ -12,66 +12,66 @@ namespace MediaBrowser.Model.Providers
/// There is no specific media type associated with the external id, or this is the default id for the external /// There is no specific media type associated with the external id, or this is the default id for the external
/// provider so there is no need to specify a type. /// provider so there is no need to specify a type.
/// </summary> /// </summary>
General, General = 0,
/// <summary> /// <summary>
/// A music album. /// A music album.
/// </summary> /// </summary>
Album, Album = 1,
/// <summary> /// <summary>
/// The artist of a music album. /// The artist of a music album.
/// </summary> /// </summary>
AlbumArtist, AlbumArtist = 2,
/// <summary> /// <summary>
/// The artist of a media item. /// The artist of a media item.
/// </summary> /// </summary>
Artist, Artist = 3,
/// <summary> /// <summary>
/// A boxed set of media. /// A boxed set of media.
/// </summary> /// </summary>
BoxSet, BoxSet = 4,
/// <summary> /// <summary>
/// A series episode. /// A series episode.
/// </summary> /// </summary>
Episode, Episode = 5,
/// <summary> /// <summary>
/// A movie. /// A movie.
/// </summary> /// </summary>
Movie, Movie = 6,
/// <summary> /// <summary>
/// An alternative artist apart from the main artist. /// An alternative artist apart from the main artist.
/// </summary> /// </summary>
OtherArtist, OtherArtist = 7,
/// <summary> /// <summary>
/// A person. /// A person.
/// </summary> /// </summary>
Person, Person = 8,
/// <summary> /// <summary>
/// A release group. /// A release group.
/// </summary> /// </summary>
ReleaseGroup, ReleaseGroup = 9,
/// <summary> /// <summary>
/// A single season of a series. /// A single season of a series.
/// </summary> /// </summary>
Season, Season = 10,
/// <summary> /// <summary>
/// A series. /// A series.
/// </summary> /// </summary>
Series, Series = 11,
/// <summary> /// <summary>
/// A music track. /// A music track.
/// </summary> /// </summary>
Track Track = 12
} }
} }

Loading…
Cancel
Save