2014-04-07 02:10:38 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2013-09-06 19:17:15 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
public interface IHasAlbumArtist
|
|
|
|
|
{
|
2014-06-23 16:05:19 +00:00
|
|
|
|
List<string> AlbumArtists { get; set; }
|
2013-09-06 19:17:15 +00:00
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
|
|
|
|
public interface IHasArtist
|
|
|
|
|
{
|
|
|
|
|
bool HasArtist(string name);
|
2014-04-07 02:10:38 +00:00
|
|
|
|
|
|
|
|
|
List<string> AllArtists { get; }
|
2014-09-05 03:48:53 +00:00
|
|
|
|
|
|
|
|
|
List<string> Artists { get; }
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2013-09-06 19:17:15 +00:00
|
|
|
|
}
|