mirror of
https://github.com/Linloir/Simple-TCP-Client.git
synced 2025-12-18 09:18:11 +08:00
12 lines
230 B
Dart
12 lines
230 B
Dart
/*
|
|
* @Author : Linloir
|
|
* @Date : 2022-10-11 15:18:49
|
|
* @LastEditTime : 2022-10-11 15:22:13
|
|
* @Description :
|
|
*/
|
|
|
|
abstract class JSONEncodable {
|
|
const JSONEncodable();
|
|
|
|
Map<String, Object?> get jsonObject;
|
|
} |