using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayEcoCplifeRooominfoQueryResponse. /// public class AlipayEcoCplifeRooominfoQueryResponse : AopResponse { /// /// 符合条件的小区房屋信息列表. /// [XmlArray("room_info")] [XmlArrayItem("cplife_room_detail")] public List RoomInfo { get; set; } } }