namespace BBWY.Client.Models { public class Consignee : NotifyObject { private string contactName; private string address; private string mobile; private string telePhone; private bool isDecode; /// /// 省 /// public string Province { get; set; } /// /// 市 /// public string City { get; set; } /// /// 县 /// public string County { get; set; } /// /// 镇 /// public string Town { get; set; } public string ContactName { get => contactName; set { Set(ref contactName, value); } } public string Address { get => address; set { Set(ref address, value); } } public string Mobile { get => mobile; set { Set(ref mobile, value); } } public string TelePhone { get => telePhone; set { Set(ref telePhone, value); } } public bool IsDecode { get => isDecode; set { Set(ref isDecode, value); } } } }