SongInfo.cs 461 B

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