Added some proto related to mail stuff

This commit is contained in:
Asnxthaony
2022-04-22 14:40:19 +08:00
parent 4d9d7c244b
commit a8a04fc588
13 changed files with 126 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message MailTextContent {
string title = 1;
string content = 2;
string sender = 3;
}