using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenPageNewcontextTransferModel Data Structure. /// [Serializable] public class AlipayOpenPageNewcontextTransferModel : AopObject { /// /// 参数1 /// [XmlElement("param_one")] public string ParamOne { get; set; } /// /// 参数3 /// [XmlElement("param_three")] public string ParamThree { get; set; } /// /// 参数2 /// [XmlElement("param_two")] public string ParamTwo { get; set; } } }