Files
PiliPlus/lib/models_new/msg/msg_reply/cursor.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

14 lines
267 B
Dart

class Cursor {
bool? isEnd;
int? id;
int? time;
Cursor({this.isEnd, this.id, this.time});
factory Cursor.fromJson(Map<String, dynamic> json) => Cursor(
isEnd: json['is_end'] as bool?,
id: json['id'] as int?,
time: json['time'] as int?,
);
}