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