using JT808.Protocol.Enums;
using JT808.Protocol.Extensions;
using JT808.Protocol.Formatters;
using JT808.Protocol.Interfaces;
using JT808.Protocol.MessagePack;
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.Json;
namespace JT808.Protocol.MessageBody.CarDVR
{
///
/// 采集记录仪执行标准版本
/// 返回:记录仪执行标准的年号及修改单号
///
public class JT808_CarDVR_Down_0x00 : JT808CarDVRDownBodies
{
///
/// 0x00
///
public override byte CommandId => JT808CarDVRCommandID.采集记录仪执行标准版本.ToByteValue();
///
/// 采集记录仪执行标准版本
///
public override string Description => "采集记录仪执行标准版本";
///
///
///
public override bool SkipSerialization { get; set; } = true;
}
}