mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
19 lines
462 B
C#
19 lines
462 B
C#
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.PartyMatch
|
|
{
|
|
[PacketPath("/partymatch/listinvitation")]
|
|
public class ListPartyMatchInvitations : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqListInvitation>();
|
|
var user = GetUser();
|
|
|
|
var response = new ResListInvitation();
|
|
// TODO
|
|
WriteData(response);
|
|
}
|
|
}
|
|
}
|