| 123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.ComponentModel;
- using System.Threading.Tasks;
- using HslCommunication.Core;
- using Newtonsoft.Json;
- namespace TeamAAS.Communication.Interfaces
- {
- public enum DebugDataType
- {
- Bool,
- Byte,
- Short,
- Ushort,
- Int,
- Uint,
- Long,
- Ulong,
- Float,
- Double,
- String
- }
- public enum ByteOrderType
- {
- ABCD,
- BADC,
- CDBA,
- DCBA,
- }
-
- }
|