2023-11-13 11:28:42 +08:00
|
|
|
|
2023-12-11 13:44:15 +08:00
|
|
|
import 'io_type.dart';
|
2023-11-13 11:28:42 +08:00
|
|
|
|
2023-07-27 15:29:37 +08:00
|
|
|
abstract class Reply{
|
2023-08-15 18:54:44 +08:00
|
|
|
|
2023-07-27 15:29:37 +08:00
|
|
|
CommandType? commandType;
|
|
|
|
|
|
|
|
|
|
//command key flag
|
2023-08-15 18:54:44 +08:00
|
|
|
int status = 0;
|
|
|
|
|
List<int> data = [];
|
2023-08-08 09:42:35 +08:00
|
|
|
Reply.parseData(this.commandType, List<int> dataDetail);
|
2023-07-27 15:29:37 +08:00
|
|
|
|
|
|
|
|
}
|