This repository has been archived on 2023-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
backup-manager/BackupManager/Config.cs

22 lines
811 B
C#
Raw Normal View History

2018-10-13 23:03:50 +00:00
namespace BackupManager
{
public class Config
{
public string FileSystemPathV2 { get; set; }
2019-08-16 03:09:17 +00:00
public string MySqlDumpPathWindows { get; set; } = @"C:\Program Files\MariaDB 10.3\bin\mysqldump.exe";
2018-10-13 23:03:50 +00:00
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";
2018-10-13 23:03:50 +00:00
public string MisuzuPath { get; set; }
2019-01-15 15:27:00 +00:00
public string SatoriHost { get; set; }
public ushort SatoriPort { get; set; }
public string SatoriSecret { get; set; }
public bool SatoriErrorsOnly { get; set; } = true;
2018-10-13 23:03:50 +00:00
}
}