DocSpace-buildtools/web/ASC.Web.Core/protos/UserPhotoManagerCacheItem.proto

22 lines
317 B
Protocol Buffer

syntax = "proto3";
package ASC.Web.Core.Users;
message UserPhotoManagerCacheItem {
bytes UserID = 1;
CacheSize Size = 2;
string FileName = 3;
int32 TenantId = 4;
}
enum CacheSize {
Max = 0;
Retina = 1;
Big = 2;
Medium = 3;
Small = 4;
Original = 5;
}