IHasAlbumArtist.cs 305 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Entities.Audio
  3. {
  4. public interface IHasAlbumArtist
  5. {
  6. string AlbumArtist { get; set; }
  7. }
  8. public interface IHasArtist
  9. {
  10. bool HasArtist(string name);
  11. List<string> AllArtists { get; }
  12. }
  13. }