13 lines
212 B
Dart
Executable File
13 lines
212 B
Dart
Executable File
|
|
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);
|
|
|
|
} |