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

16 lines
272 B
C#
Raw Normal View History

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

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