步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
351 B

2 years ago
using System;
using System.Collections.Generic;
using System.Text;
2 years ago
using static BBWY.Server.Model.Enums;
2 years ago
namespace BBWY.Server.Model.Dto
{
public class PayPurchaseOrderResponse
{
public bool Success { get; set; }
2 years ago
public PurchaseOrderState PurchaseOrderState { get; set; }
2 years ago
public string Msg { get; set; }
2 years ago
2 years ago
}
}