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.

23 line
565 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT808.Protocol.MessageBody
  5. {
  6. /// <summary>
  7. /// 自定义位置附加信息
  8. /// </summary>
  9. public abstract class JT808_0x0200_CustomBodyBase4
  10. {
  11. /// <summary>
  12. /// 自定义附加信息Id扩展
  13. /// </summary>
  14. public abstract byte AttachInfoId { get; set; }
  15. /// <summary>
  16. /// 自定义附加信息长度
  17. /// 四个字节
  18. /// </summary>
  19. public abstract uint AttachInfoLength { get; set; }
  20. }
  21. }