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.
 

41 lines
877 B

using System.Xml.Serialization;
using BWP.ABCClient.Common;
namespace BWP.ABCClient.Market
{
[XmlRoot(ElementName = "MSG")]
public class OrderPayResponse : MessageBase
{
public MessageContent Message { get; set; }
public class MessageContent
{
public ControlContent Control { get; set; }
public string Parameters { get; set; }
public string Resultsets { get; set; }
}
public class ControlContent
{
public string MerchantTrxNo { get; set; }
public string ReturnMessage { get; set; }
public string ChannelType { get; set; }
public string Version { get; set; }
public string ClientIP { get; set; }
public string BusinessID { get; set; }
public string FunctionID { get; set; }
public string ReturnCode { get; set; }
public string MerchantID { get; set; }
}
}
}