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

12 lines
274 B
Protocol Buffer

syntax = "proto3";
package ASC.Data.Backup.Contracts;
message StartRestoreRequest {
int32 TenantId = 1;
string BackupId = 2;
int32 StorageType = 3;
string FilePathOrId = 4;
bool NotifyAfterCompletion = 5;
map<string, string> StorageParams = 6;
}