mirror of
https://github.com/EpinelPS/EpinelPS.git
synced 2025-12-14 16:04:36 +01:00
18 lines
411 B
C#
18 lines
411 B
C#
using nksrv.Utils;
|
|
|
|
namespace nksrv.LobbyServer.Msgs.User
|
|
{
|
|
[PacketPath("/user/getwallpaperinventory")]
|
|
public class GetWallpaperInventory : LobbyMsgHandler
|
|
{
|
|
protected override async Task HandleAsync()
|
|
{
|
|
var req = await ReadData<ReqGetWallpaperInventory>();
|
|
|
|
var r = new ResGetWallpaperInventory();
|
|
|
|
await WriteDataAsync(r);
|
|
}
|
|
}
|
|
}
|