SongInfo.cs 512 B

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