13 lines
414 B
Protocol Buffer
13 lines
414 B
Protocol Buffer
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; //是否已读
|
|
} |