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/StorageMethod.cs

10 lines
142 B
C#

namespace BackupManager
{
public enum StorageMethod
{
//GoogleDrive = 1,
Sftp = 2,
FileSystem = 4,
}
}