DocSpace-client/web/ASC.Web.Core/protos/UserPhotoManagerCacheItem.proto
2019-07-22 15:31:09 +03:00

17 lines
244 B
Protocol Buffer

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