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.

21 line
508 B

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