aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/Audio/IHasAlbumArtist.cs
blob: a269b348630c2738c80b6c3c709b2ca9675ae04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MediaBrowser.Controller.Entities.Audio
{
    public interface IHasAlbumArtist
    {
        string[] AlbumArtists { get; set; }
    }

    public interface IHasArtist
    {
        string[] AllArtists { get; }

        string[] Artists { get; set; }
    }
}