namespace BBWY.Client.Models
{
    public class Consignee : NotifyObject
    {
        private string contactName;
        private string address;
        private string mobile;
        private string telePhone;
        private bool isDecode;


        /// <summary>
        /// 省
        /// </summary>
        public string Province { get; set; }

        /// <summary>
        /// 市
        /// </summary>
        public string City { get; set; }

        /// <summary>
        /// 县
        /// </summary>
        public string County { get; set; }

        /// <summary>
        /// 镇
        /// </summary>
        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); } }
    }
}