Files
EpinelPS/nksrv/LobbyServer/Msgs/Archive/GetArchives.cs
Mikhail Thompson d3ea7d4112 lobby ui works
2024-06-27 20:48:15 +03:00

23 lines
517 B
C#

using nksrv.Utils;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.LobbyServer.Msgs.Archive
{
[PacketPath("/archive/get")]
public class GetArchives : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqGetArchiveRecord>();
var response = new ResGetArchiveRecord();
// TODO
WriteData(response);
}
}
}