11 lines
304 B
C#
11 lines
304 B
C#
|
|
using Hncore.Pass.PaymentCenter.Domain;
|
||
|
|
|
||
|
|
namespace Hncore.Pass.PaymentCenter.Response
|
||
|
|
{
|
||
|
|
public class QueryOrderResponse
|
||
|
|
{
|
||
|
|
public PaymentStatus PaymentStatus { get; set; }
|
||
|
|
public PaymentType PayType { get; set; }
|
||
|
|
public string PaymentMessage { get; set; }
|
||
|
|
}
|
||
|
|
}
|