12 lines
391 B
C#
12 lines
391 B
C#
namespace PetWashControl.Models;
|
|
|
|
public sealed class PaymentStatusResponse
|
|
{
|
|
public Order? Order { get; set; }
|
|
public bool IsPaid { get; set; }
|
|
public string TradeState { get; set; } = string.Empty;
|
|
public string OutTradeNo { get; set; } = string.Empty;
|
|
public string TransactionId { get; set; } = string.Empty;
|
|
public string Message { get; set; } = string.Empty;
|
|
}
|