using System.Xml.Serialization;
|
|
|
|
namespace BWP.ABCClient.Common
|
|
{
|
|
[XmlRoot(ElementName = "MSG")]
|
|
public class PaymentURLResponse : 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 TrnxType { get; set; }
|
|
|
|
public string PaymentURL { get; set; }
|
|
}
|
|
}
|
|
}
|