basic reward system working

This commit is contained in:
Mikhail Thompson
2024-06-28 13:48:43 +03:00
parent 91a6ee3b3d
commit 28f6473bb9
9 changed files with 148 additions and 10 deletions

View File

@@ -1534,4 +1534,22 @@ message ReqSetWallpaper {
}
message ResSetWallpaper {
}
message NetInvitation {
NetWholeUserData fromUser = 1;
int64 inviteTime = 2;
string partyId = 3;
int32 eventId = 4;
}
enum ListInvitationError {
LIST_INVITATION_ERROR_SUCCESS = 0;
LIST_INVITATION_ERROR_NOT_PERIOD_EVENT = 1;
}
message ReqListInvitation {}
message ResListInvitation {
ListInvitationError error = 1;
repeated NetInvitation invitationList = 2;
}