2019-01-13 13:01:16 -07:00
|
|
|
|
2018-12-27 16:27:57 -07:00
|
|
|
namespace MediaBrowser.Controller.Entities.Audio
|
|
|
|
{
|
|
|
|
public interface IHasAlbumArtist
|
|
|
|
{
|
|
|
|
string[] AlbumArtists { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface IHasArtist
|
|
|
|
{
|
|
|
|
string[] AllArtists { get; }
|
|
|
|
|
|
|
|
string[] Artists { get; set; }
|
|
|
|
}
|
|
|
|
}
|