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.
 

44 lines
970 B

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