implement GetFieldObjectsCount, MarkNoticeRead

This commit is contained in:
Mikhail
2025-04-08 18:58:37 -04:00
parent e37f08c232
commit c9c334c2ff
5 changed files with 83 additions and 6 deletions

View File

@@ -0,0 +1,20 @@
using EpinelPS.Utils;
using EpinelPS.StaticInfo; // For GameData access
namespace EpinelPS.LobbyServer.LobbyUser
{
[PacketPath("/record/notice")]
public class MarkNoticeRead : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqRecordNoticeLog>();
var r = new ResRecordNoticeLog();
var user = GetUser();
// TODO
await WriteDataAsync(r);
}
}
}