jellyfin/MediaBrowser.Controller/Providers/SongInfo.cs

16 lines
374 B
C#
Raw Normal View History

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