feat(battle-engine): copy-loop closure to 3282 files (member-surface frontier)
This commit is contained in:
26
SVSim.BattleEngine/Engine/Cute/PaymentStartCancelParams.cs
Normal file
26
SVSim.BattleEngine/Engine/Cute/PaymentStartCancelParams.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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();
|
||||
}
|
||||
Reference in New Issue
Block a user