SongInfo.cs 420 B

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