2015-03-13 19:37:19 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
public class SongInfo : ItemLookupInfo
|
|
|
|
{
|
2017-08-10 18:01:31 +00:00
|
|
|
public string[] AlbumArtists { get; set; }
|
2015-03-13 19:37:19 +00:00
|
|
|
public string Album { get; set; }
|
2017-08-24 19:52:19 +00:00
|
|
|
public string[] Artists { get; set; }
|
2015-03-13 19:37:19 +00:00
|
|
|
|
|
|
|
public SongInfo()
|
|
|
|
{
|
2017-08-24 19:52:19 +00:00
|
|
|
Artists = EmptyStringArray;
|
2017-08-10 18:01:31 +00:00
|
|
|
AlbumArtists = EmptyStringArray;
|
2015-03-13 19:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|