using BBWY.Client.Models.APIModel; using System; using System.Collections.Generic; using System.Text; using System.Windows.Input; namespace BBWY.Client.Models.PackUser { public class PackerTaskModel: PackerTaskData { private string packRemainTime; /// /// 打包剩余时间 /// public string PackRemainTime { get => packRemainTime; set { Set(ref packRemainTime, value); } } private bool isPackOverTime; public bool IsPackOverTime { get => isPackOverTime; set { Set(ref isPackOverTime, value); } } private bool showSendMsg = false; /// /// 展示留言信息 /// public bool ShowSendMsg { get => showSendMsg; set { Set(ref showSendMsg, value); } } private string taskMarkMsg; /// /// 展示留言信息 /// public string TaskMarkMsg { get => taskMarkMsg; set { Set(ref taskMarkMsg, value); } } private bool showMoreMsg = false; /// /// 展示留言信息 /// public bool ShowMoreMsg { get => showMoreMsg; set { Set(ref showMoreMsg, value); } } } }