38f96af079
Refs #575
15 lines
268 B
C#
15 lines
268 B
C#
namespace MediaBrowser.Controller.Entities.Audio
|
|
{
|
|
public interface IHasAlbumArtist
|
|
{
|
|
string[] AlbumArtists { get; set; }
|
|
}
|
|
|
|
public interface IHasArtist
|
|
{
|
|
string[] AllArtists { get; }
|
|
|
|
string[] Artists { get; set; }
|
|
}
|
|
}
|