mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 00:14:48 +01:00
lobby ui works
This commit is contained in:
26
nksrv/LobbyServer/Msgs/Soloraid/GetSoloraidPeriod.cs
Normal file
26
nksrv/LobbyServer/Msgs/Soloraid/GetSoloraidPeriod.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user