using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Dtos
{
///
/// CAN报文和帧
///
public class CANMsgDto:BindableBase
{
private string? _MsgName;
///
/// 消息名称/帧名称
///
public string? MsgName
{
get { return _MsgName; }
set { _MsgName = value; RaisePropertyChanged(); }
}
}
}