aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ArtistInfo.cs
blob: 8a4abd5c68efe4f881aa004ffcbc93ddd973a708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Collections.Generic;

namespace MediaBrowser.Controller.Providers
{
    public class ArtistInfo : ItemLookupInfo
    {
        public List<SongInfo> SongInfos { get; set; }

        public ArtistInfo()
        {
            SongInfos = new List<SongInfo>();
        }
    }
}