aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ArtistInfo.cs
blob: adf885baa66d6bacd0839876b9c3045302137b95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma warning disable CS1591

using System.Collections.Generic;

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

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