2017-08-24 19:52:19 +00:00
|
|
|
|
|
2013-09-06 19:17:15 +00:00
|
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
|
{
|
|
|
|
|
public interface IHasAlbumArtist
|
|
|
|
|
{
|
2017-08-10 18:01:31 +00:00
|
|
|
|
string[] AlbumArtists { get; set; }
|
2013-09-06 19:17:15 +00:00
|
|
|
|
}
|
2013-09-10 18:56:00 +00:00
|
|
|
|
|
|
|
|
|
public interface IHasArtist
|
|
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
|
string[] AllArtists { get; }
|
2015-03-13 17:25:28 +00:00
|
|
|
|
|
2017-08-24 19:52:19 +00:00
|
|
|
|
string[] Artists { get; set; }
|
2013-09-10 18:56:00 +00:00
|
|
|
|
}
|
2013-09-06 19:17:15 +00:00
|
|
|
|
}
|