Files
SVSimServer/SVSim.BattleEngine/Engine/Cute/PaymentStartCancelParams.cs

27 lines
438 B
C#

namespace Cute;
public class PaymentStartCancelParams : PostParams
{
public class PaymentError
{
public string message = "";
}
public class Payment
{
public string product_id = "";
public string price = "";
public string currency_code = "";
public int isalertagree;
public int isalertactive;
}
public Payment payment = new Payment();
public PaymentError error = new PaymentError();
}