BeatSaber-version-changer/controller/VersionConfig.cs

17 lines
337 B
C#
Raw Normal View History

2022-05-12 00:35:22 +02:00
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; }
}
}