SongInfo.cs 493 B

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