using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// PropertyAuthInfo Data Structure.
///
[Serializable]
public class PropertyAuthInfo : AopObject
{
///
/// 小区所在区县
///
[XmlElement("area")]
public string Area { get; set; }
///
/// 小区所在城市
///
[XmlElement("city")]
public string City { get; set; }
///
/// 小区名称
///
[XmlElement("community")]
public string Community { get; set; }
///
/// 认证信息ID(ISV提供,作为修改、删除唯一标识)
///
[XmlElement("data_id")]
public string DataId { get; set; }
///
/// 小区纬度
///
[XmlElement("latitude")]
public string Latitude { get; set; }
///
/// 小区经度
///
[XmlElement("longitude")]
public string Longitude { get; set; }
///
/// 物业公司
///
[XmlElement("property")]
public string Property { get; set; }
///
/// 支付宝用户ID
///
[XmlElement("uid")]
public string Uid { get; set; }
}
}