DocSpace-buildtools/common/ASC.Core.Common/protos/UserGroupRefCacheItem.proto

13 lines
242 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package ASC.Core.Caching;
message UserGroupRefCacheItem {
2019-08-28 12:58:53 +00:00
bytes UserId = 1;
bytes GroupId = 2;
bool Removed = 3;
string RefType = 4;
int64 LastModified = 5;
int32 Tenant = 6;
}