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

using System.Collections.Generic;

namespace MediaBrowser.Controller.Providers
{
    public class ArtistInfo : ItemLookupInfo
    {
        public ArtistInfo()
        {
            SongInfos = new List<SongInfo>();
        }

        public List<SongInfo> SongInfos { get; set; }
    }
}