tbfDBBackup/tbfDBBackup/BackupCombination.cs
2024-10-17 21:43:36 +02:00

15 lines
410 B
C#

using tbfDBBackup.configuration;
namespace tbfDBBackup;
public struct BackupCombination
{
public PathWrapper Path { get; init; }
public string DatabaseName { get; set; }
public string BackupFilePath { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string CommandPath { get; set; }
public string ServerName { get; set; }
}