using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayUserFamilyArchiveQueryResponse. /// public class AlipayUserFamilyArchiveQueryResponse : AopResponse { /// /// 家庭档案列表,包含档案id、档案详情等 /// [XmlArray("archive_list")] [XmlArrayItem("family_archive_detail")] public List ArchiveList { get; set; } } }