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