2
0

SongInfo.cs 399 B

1234567891011121314151617
  1. using System;
  2. namespace MediaBrowser.Controller.Providers
  3. {
  4. public class SongInfo : ItemLookupInfo
  5. {
  6. public string[] AlbumArtists { get; set; }
  7. public string Album { get; set; }
  8. public string[] Artists { get; set; }
  9. public SongInfo()
  10. {
  11. Artists = Array.Empty<string>();
  12. AlbumArtists = Array.Empty<string>();
  13. }
  14. }
  15. }