PlaylistSong.cs 592 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SongBrowserPlugin.DataAccess
  7. {
  8. public class PlaylistSong
  9. {
  10. public String Key { get; set; }
  11. public String SongName { get; set; }
  12. public string Hash { get; set; }
  13. // Set by playlist downloading
  14. [NonSerialized]
  15. public string LevelId;
  16. [NonSerialized]
  17. public IBeatmapLevel Level;
  18. [NonSerialized]
  19. public bool OneSaber;
  20. [NonSerialized]
  21. public string Path;
  22. }
  23. }