forked from PGR/ascnet
1
0
Fork 0

This is how the actual gen does it

This commit is contained in:
Kyle Belanger 2024-04-14 08:29:18 -04:00
parent e0ef1d1c78
commit bca322d8ef
2 changed files with 8 additions and 7 deletions

View File

@ -28,6 +28,9 @@ namespace AscNet.GameServer.Handlers
public string Id;
}
[MessagePackObject(true)]
public class UseCdKeyResponse
{
[MessagePackObject(true)]
public class CdKeyRewardGoods
{
@ -35,9 +38,6 @@ namespace AscNet.GameServer.Handlers
public int TemplateId;
}
[MessagePackObject(true)]
public class UseCdKeyResponse
{
public int Code;
public List<CdKeyRewardGoods>? RewardGoods;
}

View File

@ -8,6 +8,7 @@ namespace AscNet.GameServer.Handlers
[MessagePackObject(true)]
public class DormEnterRequest
{
public dynamic? Content;
}
[MessagePackObject(true)]