jellyfin/MediaBrowser.Controller/Providers/SongInfo.cs

17 lines
414 B
C#
Raw Normal View History

2015-03-13 20:37:19 +01:00
using System.Collections.Generic;
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; }
public List<string> Artists { get; set; }
public SongInfo()
{
Artists = new List<string>();
2017-08-10 20:01:31 +02:00
AlbumArtists = EmptyStringArray;
2015-03-13 20:37:19 +01:00
}
}
}