jellyfin/MediaBrowser.Controller/Providers/SongInfo.cs

16 lines
374 B
C#
Raw Normal View History

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