21 lines
443 B
C#
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); }
|
|
}
|
|
|
|
}
|
|
}
|