Files
ADP/Model/Models/CanMessageShow.cs
T
2026-06-10 16:05:35 +08:00

25 lines
551 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Model.Models
{
/// <summary>
/// CAN 报文展示纯数据类(对应 UIShare.UIViewModel.CanMessageShowModel
/// </summary>
public class CanMessageShow
{
public byte 通道 { get; set; }
public int 报文ID { get; set; }
public ulong 时间戳 { get; set; }
public byte 长度 { get; set; }
public bool FD { get; set; }
public bool IsTx { get; set; }
public byte[] Bytes { get; set; } = new byte[64];
public string? 报文 { get; set; }
}
}