WuKongIMFlutterSDK/lib/entity/reminder.dart
2023-08-18 21:55:18 +08:00

17 lines
311 B
Dart

class WKReminder {
int reminderID = 0;
String messageID = '';
String channelID = '';
int channelType = 0;
int messageSeq = 0;
int type = 0;
int isLocate = 0;
String uid = '';
String text = '';
dynamic data;
int version = 0;
int done = 0;
int needUpload = 0;
String publisher = '';
}