mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
implement more things
This commit is contained in:
23
nksrv/LobbyServer/Msgs/Shop/InApp/GetProductListInApp.cs
Normal file
23
nksrv/LobbyServer/Msgs/Shop/InApp/GetProductListInApp.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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/getdata")]
|
||||
public class GetProductList : LobbyMsgHandler
|
||||
{
|
||||
protected override async Task HandleAsync()
|
||||
{
|
||||
var x = await ReadData<ReqGetInAppShopData>();
|
||||
|
||||
var response = new ResGetInAppShopData();
|
||||
// TODO
|
||||
|
||||
WriteData(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user