DocSpace-client/common/ASC.Data.Storage/protos/MigrationProgress.proto

12 lines
195 B
Protocol Buffer
Raw Normal View History

2020-08-26 07:07:12 +00:00
syntax = "proto3";
2021-10-22 16:51:51 +00:00
package ASC.Protos.Migration;
2020-08-26 07:07:12 +00:00
message MigrationProgress{
bool IsCompleted = 1;
2020-08-27 14:01:37 +00:00
double Progress = 2;
2020-08-26 07:07:12 +00:00
string Error = 3;
string Link = 4;
int32 TenantId = 5;
}