DocSpace-client/common/services/ASC.Data.Backup/protos/CreateScheduleRequest.proto
2020-06-23 13:48:36 +03:00

14 lines
324 B
Protocol Buffer

syntax = "proto3";
package ASC.Data.Backup.Contracts;
message CreateScheduleRequest {
int32 TenantId = 1;
int32 UserId = 2;
bool BackupMail = 3;
int32 StorageType = 4;
string StorageBasePath = 5;
map<string, string> StorageParams = 6;
string Cron = 7;
int32 NumberOfBackupsStored = 8;
}