using System.Xml.Serialization;
|
|
using BWP.ABCClient.Common;
|
|
|
|
namespace BWP.ABCClient.B2C
|
|
{
|
|
[XmlRoot(ElementName = "MSG")]
|
|
public class PaymentResponse : MessageBase
|
|
{
|
|
public MessageContent Message { get; set; }
|
|
|
|
public class MessageContent
|
|
{
|
|
public MerchantContent Merchant { get; set; }
|
|
public TrxResponseContent TrxResponse { get; set; }
|
|
}
|
|
|
|
public class TrxResponseContent
|
|
{
|
|
public string ReturnCode { get; set; }
|
|
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public string TrxType { get; set; }
|
|
|
|
public string OrderNo { get; set; }
|
|
|
|
public string PaymentURL { get; set; }
|
|
|
|
public string OrderAmount { get; set; }
|
|
}
|
|
}
|
|
}
|