using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// IndividualInfo Data Structure.
///
[Serializable]
public class IndividualInfo : AopObject
{
///
/// 生日
///
[XmlElement("date_of_birth")]
public string DateOfBirth { get; set; }
///
/// 证件号码
///
[XmlElement("id_number")]
public string IdNumber { get; set; }
///
/// 个人名字
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 国籍
///
[XmlElement("nationality")]
public string Nationality { get; set; }
///
/// 个人居住地
///
[XmlElement("residential_address")]
public string ResidentialAddress { get; set; }
///
/// 该个体的类型
///
[XmlElement("type")]
public string Type { get; set; }
}
}