购买api

This commit is contained in:
“wanyongkang”
2021-05-08 09:16:36 +08:00
parent 87f471ab37
commit a81d2055b6
9 changed files with 153 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ namespace Hncore.Pass.Vpn.Request.Product
{
public class CreateOrderRequest
{
public string apikey { get; set; }
public OrderType OrderType { get; set; }
public int PackageId { get; set; }

View File

@@ -5,6 +5,7 @@ namespace Hncore.Pass.Vpn.Request.Product
{
public class CreateTestAccountRequest
{
public string apikey { get; set; }
public int ProductId { get; set; }
public int PackageId { get; set; }

View File

@@ -2,7 +2,10 @@
{
public class UpdateAccountPwdRequest
{
public string apikey { get; set; }
public int Id { get; set; }
public string Account { get; set; }
public string Pwd { get; set; }
public string RePwd { get; set; }
}
}