using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipaySiteprobeInstoreUserResponse. /// public class AlipaySiteprobeInstoreUserResponse : AopResponse { /// /// 结果码 /// [XmlElement("code")] public string Code { get; set; } /// /// 结果描述 /// [XmlElement("msg")] public string Msg { get; set; } /// /// 到店用户数据 /// [XmlArray("users")] [XmlArrayItem("instore_user")] public List Users { get; set; } } }