Files
EpinelPS/nksrv/LobbyServer/Msgs/Soloraid/GetSoloraidPeriod.cs
2024-07-11 14:35:48 -04:00

27 lines
645 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.Soloraid
{
[PacketPath("/soloraid/getperiod")]
public class GetSoloraidPeriod : LobbyMsgHandler
{
protected override async Task HandleAsync()
{
var req = await ReadData<ReqGetSoloRaidPeriod>();
var response = new ResGetSoloRaidPeriod();
response.Period = new NetSoloRaidPeriodData
{
};
// TODO
await WriteDataAsync(response);
}
}
}