12 lines
199 B
Dart
12 lines
199 B
Dart
import 'io_type.dart';
|
|
|
|
abstract class Reply{
|
|
|
|
CommandType? commandType;
|
|
|
|
//command key flag
|
|
int status = 0;
|
|
List<int> data = [];
|
|
Reply.parseData(this.commandType, List<int> dataDetail);
|
|
|
|
} |