Files
ADP/UIShare/UIViewModel/CANSignalConfigVM.cs
2026-07-15 15:47:42 +08:00

16 lines
416 B
C#

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; }
public string MethodName {get;set;}
}
}