1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
namespace MediaBrowser.Model.Providers
{
/// <summary>
/// The specific media type of an <see cref="IExternalId"/>.
/// </summary>
/// <remarks>
/// This is used as a translation key for clients.
/// </remarks>
public enum ExternalIdMediaType
{
/// <summary>
/// There is no specific media type associated with the external id, or the external provider only has one
/// id type so there is no need to be specific.
/// </summary>
General,
/// <summary>
/// A music album.
/// </summary>
Album,
/// <summary>
/// The artist of a music album.
/// </summary>
AlbumArtist,
/// <summary>
/// The artist of a media item.
/// </summary>
Artist,
/// <summary>
/// A boxed set of media.
/// </summary>
BoxSet,
/// <summary>
/// A series episode.
/// </summary>
Episode,
/// <summary>
/// A movie.
/// </summary>
Movie,
/// <summary>
/// An alternative artist apart from the main artist.
/// </summary>
OtherArtist,
/// <summary>
/// A person.
/// </summary>
Person,
/// <summary>
/// A release group.
/// </summary>
ReleaseGroup,
/// <summary>
/// A single season of a series.
/// </summary>
Season,
/// <summary>
/// A series.
/// </summary>
Series,
/// <summary>
/// A music track.
/// </summary>
Track
}
}
|