27 lines
438 B
C#
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();
|
|
}
|