15 lines
410 B
C#
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; }
|
|
} |