mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 16:34:40 +01:00
19 lines
437 B
C#
19 lines
437 B
C#
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Shop.InApp
|
|
{
|
|
[PacketPath("/inappshop/getsubscription")]
|
|
public class GetInAppSubscription : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetSubscription>();
|
|
|
|
var response = new ResGetSubscription();
|
|
|
|
// TODO
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|