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

14 lines
364 B
Protocol Buffer

syntax = "proto3";
package ASC.Data.Backup.Contracts;
import "google/protobuf/timestamp.proto";
message ScheduleResponse {
int32 StorageType = 1;
string StorageBasePath = 2;
bool BackupMail = 3;
int32 NumberOfBackupsStored = 4;
string Cron = 5;
google.protobuf.Timestamp LastBackupTime = 6;
map<string, string> StorageParams = 7;
}