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; } }