Files
wcs/货架标准上位机/Views/Controls/ProcessDialogViewModel.cs
2025-01-08 15:51:28 +08:00

21 lines
446 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); }
}
}
}