2020-12-28 14:55:48 +08:00
|
|
|
using Hncore.Payment.Enum;
|
|
|
|
|
|
|
|
|
|
namespace Hncore.Payment.Response
|
|
|
|
|
{
|
|
|
|
|
public class QueryOrderResponse
|
|
|
|
|
{
|
|
|
|
|
public PaymentStatus PaymentStatus { get; set; }
|
|
|
|
|
public PaymentType PayType { get; set; }
|
|
|
|
|
public string PaymentMessage { get; set; }
|
|
|
|
|
}
|
2020-10-07 20:25:03 +08:00
|
|
|
}
|