using JTNE.Protocol.Attributes;
using JTNE.Protocol.Formatters.MessageBodyFormatters;
using System;
using System.Collections.Generic;
using System.Text;
namespace JTNE.Protocol.MessageBody
{
///
/// 连续三次登入失败后,到下一次登入的时间间隔。有效值范围:1~240(表示1min~240min)
///
[JTNEFormatter(typeof(JTNE_0x80Reply_0x0CFormatter))]
public class JTNE_0x80Reply_0x0C: JTNE_0x80Reply_Body
{
public override byte ParamId { get; set; } = 0x0C;
///
/// 数据 长度
///
public override byte ParamLength { get; set; } = 1;
///
/// 连续三次登入失败后,到下一次登入的时间间隔。有效值范围:1~240(表示1min~240min)
///
public byte ParamValue { get; set; }
}
}