mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 15:34:36 +01:00
20 lines
470 B
C#
20 lines
470 B
C#
using EpinelPS.Utils;
|
|
|
|
namespace EpinelPS.LobbyServer.Event
|
|
{
|
|
[PacketPath("/bookmark/event/scenario/exist")]
|
|
public class CheckBookmarkScenarioExists : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
ReqExistScenarioBookmark req = await ReadData<ReqExistScenarioBookmark>();
|
|
|
|
ResExistScenarioBookmark response = new();
|
|
|
|
// TODO
|
|
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|