步步为盈
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

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