mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-15 00:14:48 +01:00
19 lines
520 B
C#
19 lines
520 B
C#
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.Shop.InApp
|
|
{
|
|
[PacketPath("/inappshop/getmonthlysubscriptionreward")]
|
|
public class GetMonthlySubscriptionReward : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetMonthlySubscriptionReward>();
|
|
|
|
var response = new ResGetMonthlySubscriptionReward();
|
|
|
|
// TODO: Validate response from real server
|
|
await WriteDataAsync(response);
|
|
}
|
|
}
|
|
}
|