mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-13 07:24:52 +01:00
24 lines
531 B
C#
24 lines
531 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.Messenger
|
|
{
|
|
[PacketPath("/messenger/get")]
|
|
public class GetMessages : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetMessages>();
|
|
|
|
// TODO: save these things
|
|
var response = new ResGetMessages();
|
|
|
|
WriteData(response);
|
|
}
|
|
}
|
|
}
|