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.
 

26 lines
570 B

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