using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenAppTestapiiSyncModel Data Structure. /// [Serializable] public class AlipayOpenAppTestapiiSyncModel : AopObject { /// /// v /// [XmlElement("in_1")] public string In1 { get; set; } /// /// b /// [XmlElement("in_2")] public string In2 { get; set; } } }