You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
3 years ago
|
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); } }
|
||
|
}
|
||
|
}
|