DocSpace-client/common/ASC.Common/protos/DistributedTaskCache.proto
2019-07-23 16:12:16 +03:00

17 lines
319 B
Protocol Buffer

syntax = "proto3";
package ASC.Common.Threading;
message DistributedTaskCache {
string Id = 1;
string InstanseId = 2;
string Status = 3;
string Exception = 4;
repeated DistributedTaskCacheProp Props = 5;
message DistributedTaskCacheProp
{
string Key = 1;
string Value = 2;
}
}