DocSpace-client/common/ASC.Core.Common/protos/UserGroupRefCacheItem.proto
2019-07-22 15:31:09 +03:00

13 lines
244 B
Protocol Buffer

syntax = "proto3";
package ASC.Core.Caching;
message UserGroupRefCacheItem {
string UserId = 1;
string GroupId = 2;
bool Removed = 3;
string RefType = 4;
int64 LastModified = 5;
int32 Tenant = 6;
}