新定义

This commit is contained in:
bob
2025-07-30 20:35:38 +08:00
parent e612d8fe38
commit 6b113cf32b
18 changed files with 646 additions and 94 deletions

View 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; //是否已读
}