18 lines
279 B
C#
Raw Permalink Normal View History

2024-10-29 16:28:14 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace JiShe.CollectBus.Common.Enums
{
public enum CommandChunkEnum
{
2024-11-06 16:48:44 +08:00
Len = 1,
2024-10-29 16:28:14 +08:00
C = 6,
A = 7,
AFN = 12,
SEQ = 13,
FN = 17,
2024-11-06 16:48:44 +08:00
Data = 18,
2024-10-29 16:28:14 +08:00
}
}