mirror of
https://github.com/AOSSIE-Org/OpenPeerChat-flutter.git
synced 2025-08-15 19:30:27 +08:00
10 lines
187 B
Dart
10 lines
187 B
Dart
|
|
class Msg {
|
|
String message;
|
|
String msgtype; //sent or received
|
|
String timestamp;
|
|
String ack = 'false';
|
|
String id;
|
|
Msg(this.message, this.msgtype, this.timestamp, this.id);
|
|
}
|