app-starlock/lib/talk/udp/udp_reply.dart
2024-05-15 10:06:18 +08:00

13 lines
212 B
Dart

import 'io_udpType.dart';
abstract class UDPReply{
CommandUDPType? commandType;
//command key flag
int status = 0;
List<int> data = [];
UDPReply.parseData(this.commandType, List<int> dataDetail);
}