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