10 lines
169 B
C#
10 lines
169 B
C#
|
namespace BackupManager
|
|||
|
{
|
|||
|
public enum StorageMethod
|
|||
|
{
|
|||
|
//GoogleDrive = 1,
|
|||
|
Sftp = 2,
|
|||
|
FileSystem = 4, // for debugging mysqldump
|
|||
|
}
|
|||
|
}
|