Files
wcs/货架标准上位机/Views/Controls/ProcessDialogViewModel.cs
2024-10-17 12:59:41 +08:00

21 lines
449 B
C#

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