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.
|
- using JT808.Protocol.Enums;
- using JT808.Protocol.Extensions;
- using JT808.Protocol.Formatters;
- using JT808.Protocol.Interfaces;
- using JT808.Protocol.MessagePack;
- using System;
- using System.Buffers.Binary;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json;
-
- namespace JT808.Protocol.MessageBody.CarDVR
- {
- /// <summary>
- /// 设置车辆信息
- /// 返回:车辆信息
- /// </summary>
- public class JT808_CarDVR_Up_0x82 : JT808CarDVRUpBodies
- {
- public override byte CommandId => JT808CarDVRCommandID.设置车辆信息.ToByteValue();
-
- public override string Description => "车辆信息";
- public override bool SkipSerialization { get; set; } = true;
- }
- }
|