16 lines
416 B
C#
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;}
|
|
}
|
|
}
|