SongInfo.cs 374 B

12345678910111213141516
  1. namespace MediaBrowser.Controller.Providers
  2. {
  3. public class SongInfo : ItemLookupInfo
  4. {
  5. public string[] AlbumArtists { get; set; }
  6. public string Album { get; set; }
  7. public string[] Artists { get; set; }
  8. public SongInfo()
  9. {
  10. Artists = EmptyStringArray;
  11. AlbumArtists = EmptyStringArray;
  12. }
  13. }
  14. }