This commit is contained in:
Theenoro
2022-05-14 19:00:01 +02:00
parent b5b8b4f117
commit 75528cc99a
19 changed files with 1833 additions and 85 deletions

View File

@@ -0,0 +1,10 @@
namespace BeatSaber_Versions.controller
{
internal class VersionConfig
{
public string? version { get; set; }
public string? name { get; set; }
public string? path { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace BeatSaber_Versions.controller
{
internal class VersionConfigDict
{
public String? beatsabersongs { get; set; }
public String? beatsaberfolder { get; set; }
public Dictionary<string,VersionConfig> versions { get; set; }
}
}