22 lines
881 B
C#
22 lines
881 B
C#
namespace BackupManager
|
|
{
|
|
public class Config
|
|
{
|
|
public string FileSystemPathV2 { get; set; }
|
|
|
|
public string MySqlDumpPathWindows { get; set; } = @"C:\Program Files\MariaDB 10.3\bin\mysqldump.exe";
|
|
public string MySqlDumpPath { get; set; } = @"mysqldump";
|
|
public string MySqlHost { get; set; } = @"localhost";
|
|
public string MySqlUser { get; set; }
|
|
public string MySqlPass { get; set; }
|
|
public string MySqlExcludeDatabases { get; set; } = @"mysql information_schema performance_schema";
|
|
|
|
public string MisuzuPath { get; set; }
|
|
|
|
public string SatoriHost { get; set; }
|
|
public ushort SatoriPort { get; set; }
|
|
public string SatoriSecret { get; set; }
|
|
public string SatoriFormat { get; set; } = @"/msg flash {0}";
|
|
public bool SatoriErrorsOnly { get; set; } = true;
|
|
}
|
|
}
|