jellyfin/MediaBrowser.Controller/Entities/Audio/IHasAlbumArtist.cs

16 lines
272 B
C#
Raw Normal View History

2017-08-24 21:52:19 +02:00

namespace MediaBrowser.Controller.Entities.Audio
{
public interface IHasAlbumArtist
{
2017-08-10 20:01:31 +02:00
string[] AlbumArtists { get; set; }
}
public interface IHasArtist
{
2017-08-24 21:52:19 +02:00
string[] AllArtists { get; }
2015-03-13 18:25:28 +01:00
2017-08-24 21:52:19 +02:00
string[] Artists { get; set; }
}
}