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.
39 lines
1.2 KiB
39 lines
1.2 KiB
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace BBWYB.Client.Models
|
|
{
|
|
public class Consignee : ObservableObject
|
|
{
|
|
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 { SetProperty(ref contactName, value); } }
|
|
public string Address { get => address; set { SetProperty(ref address, value); } }
|
|
public string Mobile { get => mobile; set { SetProperty(ref mobile, value); } }
|
|
public string TelePhone { get => telePhone; set { SetProperty(ref telePhone, value); } }
|
|
public bool IsDecode { get => isDecode; set { SetProperty(ref isDecode, value); } }
|
|
}
|
|
}
|
|
|