V1版本
This commit is contained in:
29
CapMachine.Wpf/CanDrive/CanCmdData.cs
Normal file
29
CapMachine.Wpf/CanDrive/CanCmdData.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.CanDrive
|
||||
{
|
||||
/// <summary>
|
||||
/// CAN Data 指令
|
||||
/// </summary>
|
||||
public class CanCmdData
|
||||
{
|
||||
/// <summary>
|
||||
/// 消息名称
|
||||
/// </summary>
|
||||
public string? MsgName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 信号名称
|
||||
/// </summary>
|
||||
public string? SignalName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 指令值
|
||||
/// </summary>
|
||||
public double SignalCmdValue { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user