ExternalIdMediaType.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. namespace MediaBrowser.Controller.Providers
  2. {
  3. /// <summary>The specific media type of an <see cref="IExternalId"/>.</summary>
  4. public enum ExternalIdMediaType
  5. {
  6. /// <summary>There is no specific media type</summary>
  7. None,
  8. /// <summary>A music album</summary>
  9. Album,
  10. /// <summary>The artist of a music album</summary>
  11. AlbumArtist,
  12. /// <summary>The artist of a media item</summary>
  13. Artist,
  14. /// <summary>A boxed set of media</summary>
  15. BoxSet,
  16. /// <summary>A series episode</summary>
  17. Episode,
  18. /// <summary>A movie</summary>
  19. Movie,
  20. /// <summary>An alternative artist apart from the main artist</summary>
  21. OtherArtist,
  22. /// <summary>A person</summary>
  23. Person,
  24. /// <summary>A release group</summary>
  25. ReleaseGroup,
  26. /// <summary>A single season of a series</summary>
  27. Season,
  28. /// <summary>A series</summary>
  29. Series,
  30. /// <summary>A music track</summary>
  31. Track
  32. }
  33. }