LevelInfo.cs 833 B

123456789101112131415161718192021222324252627282930
  1. using System.Drawing;
  2. using System.IO;
  3. using BeatLyrics.Common;
  4. namespace BeatLyrics.Tool.Models
  5. {
  6. internal class LevelInfo
  7. {
  8. public bool IsVerify => File.Exists(DirProvider.GetVerifyFile(Hash));
  9. public bool IsValid { get; set; }
  10. public string Error { get; set; }
  11. public string SongName { get; set; }
  12. public string SongSubName { get; set; }
  13. public string SongAuthor { get; set; }
  14. public string LevelAuthor { get; set; }
  15. public string Description { get; set; }
  16. public string Hash { get; set; }
  17. public string Directory { get; set; }
  18. public string MediaPath { get; set; }
  19. public string CoverPath { get; set; }
  20. public Image CoverImage { get; set; }
  21. public LocalLyricInfo[] LocalLyrics { get; set; }
  22. }
  23. }