CAN功能移植兼容

This commit is contained in:
2026-07-07 13:43:07 +08:00
parent aec0044595
commit 3b41459dcd
16 changed files with 1658 additions and 58 deletions
+14
View File
@@ -0,0 +1,14 @@
using System;
namespace UIShare.UIViewModel
{
public class CANSignalConfig
{
public int Channel { get; set; }
public int MessageID { get; set; }
public string MessageName { get; set; }
public string SignalName { get; set; }
public int CollectionInterval { get; set; }
public Guid CollectionID { get; set; }
}
}