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

17 lines
244 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package ASC.Web.Core.Users;
message UserPhotoManagerCacheItem {
string UserID = 1;
CacheSize Size = 2;
string FileName = 3;
}
message CacheSize {
int32 Width = 1;
int32 Height = 2;
}