14 lines
364 B
Protocol Buffer
14 lines
364 B
Protocol Buffer
syntax = "proto3";
|
|
package Fantasy.Network.Message;
|
|
|
|
/// 好友信息
|
|
message FriendInfo
|
|
{
|
|
int64 Id = 1; //好友id
|
|
int64 AddTime = 2; //添加时间
|
|
string NickName = 3; //昵称
|
|
string Head = 4; //头像
|
|
int32 Level = 5; //等级
|
|
string Country = 6; //国家
|
|
int32 OnlineStatus = 7; //在线状态
|
|
} |