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

12 lines
188 B
Protocol Buffer
Raw Normal View History

2020-08-26 07:07:12 +00:00
syntax = "proto3";
package ASC.Migration;
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;
}