2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
|
|
|
|
|
2022-11-06 15:30:21 +03:00
|
|
|
import "FriendOnlineState.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "FriendEnterHomeOption.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "ProfilePicture.proto";
|
2023-01-28 17:00:48 +03:00
|
|
|
import "PlatformType.proto";
|
2022-11-06 15:30:21 +03:00
|
|
|
import "SocialShowAvatarInfo.proto";
|
2023-02-02 04:57:20 +03:00
|
|
|
|
2022-11-06 15:30:21 +03:00
|
|
|
message FriendBrief {
|
2023-01-28 17:00:48 +03:00
|
|
|
uint32 uid = 1;
|
|
|
|
string nickname = 2;
|
|
|
|
uint32 level = 3;
|
|
|
|
uint32 avatarId = 4;
|
|
|
|
uint32 worldLevel = 5;
|
|
|
|
string signature = 6;
|
|
|
|
FriendOnlineState onlineState = 7;
|
|
|
|
uint32 param = 8;
|
|
|
|
bool isMpModeAvailable = 10;
|
|
|
|
string onlineId = 11;
|
|
|
|
uint32 lastActiveTime = 12;
|
|
|
|
uint32 nameCardId = 13;
|
|
|
|
uint32 mpPlayerNum = 14;
|
|
|
|
bool isChatNoDisturb = 15;
|
|
|
|
uint32 chatSequence = 16;
|
|
|
|
string remarkName = 17;
|
|
|
|
repeated SocialShowAvatarInfo showAvatarInfoList = 22;
|
|
|
|
FriendEnterHomeOption friendEnterHomeOption = 23;
|
|
|
|
ProfilePicture profilePicture = 24;
|
|
|
|
bool isGameSource = 25;
|
|
|
|
bool isPsnSource = 26;
|
|
|
|
PlatformType platformType = 27;
|
2022-11-06 15:30:21 +03:00
|
|
|
}
|