mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-28 15:34:10 +02:00
14 lines
268 B
C#
14 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; }
|
|
}
|
|
}
|