using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayEcoRenthousePublicrentApplyscheduleSyncModel Data Structure.
///
[Serializable]
public class AlipayEcoRenthousePublicrentApplyscheduleSyncModel : AopObject
{
///
/// 申请单进度列表
///
[XmlArray("apply_schedule_list")]
[XmlArrayItem("eco_apply_schedule")]
public List ApplyScheduleList { get; set; }
///
/// 证件号-身份证号
///
[XmlElement("cert_no")]
public string CertNo { get; set; }
///
/// 租客用户Id
///
[XmlElement("rent_id")]
public string RentId { get; set; }
}
}