1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SongBrowserPlugin.DataAccess
- {
- public class PlaylistSong
- {
- public String Key { get; set; }
- public String SongName { get; set; }
- public string LevelId { get; set; }
- // Set by playlist downloading
- [NonSerialized]
- public IStandardLevel Level;
- [NonSerialized]
- public bool OneSaber;
- [NonSerialized]
- public string Path;
- }
- }
|