新定义
This commit is contained in:
13
Config/NetworkProtocol/Outer/data/Mail.proto
Normal file
13
Config/NetworkProtocol/Outer/data/Mail.proto
Normal file
@@ -0,0 +1,13 @@
|
||||
syntax = "proto3";
|
||||
package Fantasy.Network.Message;
|
||||
|
||||
message MailInfo
|
||||
{
|
||||
int64 Id = 1; //邮件id
|
||||
string Title = 2; //标题
|
||||
string Content = 3; //内容
|
||||
int64 SendTime = 4; //发送时间
|
||||
int32 Type = 5; //邮件类型
|
||||
repeated AwardInfo Items = 6; //附件列表
|
||||
bool IsRead = 7; //是否已读
|
||||
}
|
||||
Reference in New Issue
Block a user