16 lines
272 B
C#
16 lines
272 B
C#
|
|
|||
|
namespace MediaBrowser.Controller.Entities.Audio
|
|||
|
{
|
|||
|
public interface IHasAlbumArtist
|
|||
|
{
|
|||
|
string[] AlbumArtists { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public interface IHasArtist
|
|||
|
{
|
|||
|
string[] AllArtists { get; }
|
|||
|
|
|||
|
string[] Artists { get; set; }
|
|||
|
}
|
|||
|
}
|