mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-16 08:54:47 +01:00
19 lines
434 B
C#
19 lines
434 B
C#
using EpinelPS.Utils;
|
|
|
|
namespace EpinelPS.LobbyServer.SoloraId;
|
|
|
|
[PacketPath("/soloraIdmuseum/get/reddotdata")]
|
|
public class GetBadgeData : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
ReqGetSoloRaidMuseumRedDotData req = await ReadData<ReqGetSoloRaidMuseumRedDotData>();
|
|
|
|
ResGetSoloRaidMuseumRedDotData response = new();
|
|
|
|
// TODO
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|