Files
wcs/货架标准上位机/Views/Controls/ProcessDialogViewModel.cs
hehaibing-1996 432a96198f fature
2024-05-15 18:59:24 +08:00

21 lines
443 B
C#

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); }
}
}
}