mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-12 23:14:34 +01:00
24 lines
542 B
C#
24 lines
542 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.Shop.InApp
|
|
{
|
|
[PacketPath("/inappshop/getsubscription")]
|
|
public class GetInAppSubscription : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetSubscription>();
|
|
|
|
var response = new ResGetSubscription();
|
|
|
|
// TODO
|
|
WriteData(response);
|
|
}
|
|
}
|
|
}
|