Files
CapMachine/CapMachine.Wpf/Models/MeterCmdMsg.cs
Tyrone CT 34ec76fda5 SV2功能增加
一些功能的修复
2025-05-21 12:17:46 +08:00

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