CAN 配置和报文记录的功能
This commit is contained in:
33
CapMachine.Wpf/Models/HighSpeed/HighFragMsg.cs
Normal file
33
CapMachine.Wpf/Models/HighSpeed/HighFragMsg.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CapMachine.Wpf.Models.HighSpeed
|
||||
{
|
||||
/// <summary>
|
||||
/// 高速片段数据
|
||||
/// </summary>
|
||||
public class HighFragMsg
|
||||
{
|
||||
public HighFragMsg()
|
||||
{
|
||||
ListCommMsg = new List<CommMsg>();
|
||||
}
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
public bool State { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Index
|
||||
/// </summary>
|
||||
public int Index { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小时数据
|
||||
/// </summary>
|
||||
public List<CommMsg> ListCommMsg { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user