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

13 lines
244 B
Protocol Buffer
Raw Normal View History

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