PlaylistSong.cs 541 B

1234567891011121314151617181920212223
  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 LevelId { get; set; }
  13. // Set by playlist downloading
  14. [NonSerialized]
  15. public IStandardLevel Level;
  16. [NonSerialized]
  17. public bool OneSaber;
  18. [NonSerialized]
  19. public string Path;
  20. }
  21. }