using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SecuritydataMobileCity Data Structure.
///
[Serializable]
public class SecuritydataMobileCity : AopObject
{
///
/// 城市
///
[JsonProperty("city")]
public string City { get; set; }
///
/// 手机号前七位
///
[JsonProperty("phone_first_7_digits")]
public string PhoneFirst7Digits { get; set; }
///
/// 省份
///
[JsonProperty("province")]
public string Province { get; set; }
}
}