This commit is contained in:
Theenoro
2022-05-12 00:35:22 +02:00
parent 371b625fed
commit b5b8b4f117
9 changed files with 572 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BeatSaber_Versions.controller
{
internal class VersionConfigDict
{
public String? beatsabersongs { get; set; }
public String? beatsaberfolder { get; set; }
public Dictionary<string,VersionConfig> versions { get; set; }
}
}