DocSpace-client/common/ASC.Core.Common/protos/UserGroupRefCacheItem.proto
2019-08-28 15:58:53 +03:00

13 lines
242 B
Protocol Buffer

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