using Ping9719.WpfEx.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 智慧物流软件系统.Views.Controls { public class ProcessDialogViewModel : BindableBase { private int processValue; public int ProcessValue { get => processValue; set { SetProperty(ref processValue, value); } } } }