2021-07-23 16:16:48 +00:00
|
|
|
#pragma warning disable CA1002, CA2227, CS1591
|
2020-08-22 19:56:24 +00:00
|
|
|
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
public class ArtistInfo : ItemLookupInfo
|
|
|
|
{
|
|
|
|
public ArtistInfo()
|
|
|
|
{
|
|
|
|
SongInfos = new List<SongInfo>();
|
|
|
|
}
|
2021-05-11 11:55:46 +00:00
|
|
|
|
|
|
|
public List<SongInfo> SongInfos { get; set; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
2019-01-13 19:30:58 +00:00
|
|
|
}
|