31 lines
635 B
C#
31 lines
635 B
C#
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CapMachine.Wpf.Models
|
|
{
|
|
/// <summary>
|
|
/// 仪表命令消息
|
|
/// </summary>
|
|
public class MeterCmdMsg:BindableBase
|
|
{
|
|
private string _Name;
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
get { return _Name; }
|
|
set { _Name = value;RaisePropertyChanged(); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 参数 SV2
|
|
/// </summary>
|
|
public string Par { get; set; }
|
|
}
|
|
}
|