mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-09 01:43:46 +02:00
11 lines
339 B
C#
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;
|
|
}
|
|
}
|