You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

27 lines
586 B

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; }
}
}
}