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.

15 lines
337 B

  1. using JT808.Protocol.Attributes;
  2. using JT808.Protocol.Formatters;
  3. namespace JT808.Protocol
  4. {
  5. /// <summary>
  6. /// 统一分包数据体
  7. /// </summary>
  8. [JT808Formatter(typeof(JT808SplitPackageBodiesFormatter))]
  9. public class JT808SplitPackageBodies : JT808Bodies
  10. {
  11. public byte[] Data { get; set; }
  12. }
  13. }