Move files around

This commit is contained in:
Natsumi
2025-09-30 12:26:19 +13:00
parent d1b961aaf2
commit cc89d5d8c9
31 changed files with 83 additions and 107 deletions
+10
View File
@@ -0,0 +1,10 @@
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;
}
}