Files
EpinelPS/nksrv/LobbyServer/Msgs/Shop/InApp/GetMonthlySubscriptionReward.cs
Mikhail Thompson d3ea7d4112 lobby ui works
2024-06-27 20:48:15 +03:00

24 lines
625 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/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
WriteData(response);
}
}
}