forked from Moux23333/FreeSR
15 lines
265 B
C#
15 lines
265 B
C#
|
namespace FreeSR.Proto
|
||
|
{
|
||
|
using ProtoBuf;
|
||
|
|
||
|
[ProtoContract]
|
||
|
public class TakeCityShopRewardScRsp
|
||
|
{
|
||
|
[ProtoMember(4)] public ItemList Reward;
|
||
|
[ProtoMember(10)] public int ShopId;
|
||
|
[ProtoMember(2)] public int Retcode;
|
||
|
[ProtoMember(6)] public int Level;
|
||
|
}
|
||
|
|
||
|
}
|