Forráskód Böngészése

Small fix to BeatSaver scrape data class. Fields are unused currently so
this was causing no harm.

Stephen Damm 5 éve
szülő
commit
afb259f5d4
1 módosított fájl, 2 hozzáadás és 1 törlés
  1. 2 1
      SongBrowserPlugin/DataAccess/ScrappedData.cs

+ 2 - 1
SongBrowserPlugin/DataAccess/ScrappedData.cs

@@ -15,7 +15,8 @@ namespace SongBrowser.DataAccess
         public string Hash { get; set; }
         public string Hash { get; set; }
         public string SongName { get; set; }
         public string SongName { get; set; }
         public string SongSubName { get; set; }
         public string SongSubName { get; set; }
-        public string AuthorName { get; set; }
+        public string LevelAuthorName { get; set; }
+        public string SongAuthorName { get; set; }
         public List<DifficultyStats> Diffs { get; set; }
         public List<DifficultyStats> Diffs { get; set; }
         public long Bpm { get; set; }
         public long Bpm { get; set; }
         public long PlayedCount { get; set; }
         public long PlayedCount { get; set; }