Files
VRCX/Dotnet/DBMerger/Config.cs
2025-09-30 14:09:19 +13:00

11 lines
339 B
C#

namespace DBMerger
{
public class Config(string newDBPath, string oldDBPath, bool debug, bool importConfig)
{
public string NewDBPath { get; } = newDBPath;
public string OldDBPath { get; } = oldDBPath;
public bool Debug { get; } = debug;
public bool ImportConfig { get; } = importConfig;
}
}