using JT808.Protocol.Interfaces; namespace JT808.Protocol.Metadata { /// /// Can属性 /// public struct JT808CanProperty: IJT808_2019_Version { /// /// CAN ID /// 4 /// public uint CanId { get; set; } /// /// CAN 数据 /// 8 /// public byte[] CanData { get; set; } } }