增加了CAN调度表发送,但是没有测试成功
This commit is contained in:
27
CapMachine.Wpf/Dtos/CANMsgDto.cs
Normal file
27
CapMachine.Wpf/Dtos/CANMsgDto.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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(); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user