You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 regels
442 B

  1. using JT808.Protocol.Interfaces;
  2. namespace JT808.Protocol.Metadata
  3. {
  4. /// <summary>
  5. /// Can属性
  6. /// </summary>
  7. public struct JT808CanProperty: IJT808_2019_Version
  8. {
  9. /// <summary>
  10. /// CAN ID
  11. /// 4
  12. /// </summary>
  13. public uint CanId { get; set; }
  14. /// <summary>
  15. /// CAN 数据
  16. /// 8
  17. /// </summary>
  18. public byte[] CanData { get; set; }
  19. }
  20. }