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 IReadOnlyList<string> AlbumArtists { get; set; }
  10. public string Album { get; set; }
  11. public IReadOnlyList<string> Artists { get; set; }
  12. public SongInfo()
  13. {
  14. Artists = Array.Empty<string>();
  15. AlbumArtists = Array.Empty<string>();
  16. }
  17. }
  18. }