using System; using System.Collections.Generic; using System.Text; namespace BBWY.Client.Models.PackTask { public class PackTaskExpress : NotifyObject { private string sourceExpressName; private string waybillNo; /// /// 快递单号 /// public string WaybillNo { get=> waybillNo; set { Set(ref waybillNo, value); } } /// /// 原快递公司 /// public string SourceExpressName { get => sourceExpressName; set { Set(ref sourceExpressName, value); } } public string NewGuid { get; set; } } }