mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 08:36:17 +08:00
11 lines
221 B
Dart
11 lines
221 B
Dart
class MsgLikeDetailPage {
|
|
bool? isEnd;
|
|
|
|
MsgLikeDetailPage({this.isEnd});
|
|
|
|
factory MsgLikeDetailPage.fromJson(Map<String, dynamic> json) =>
|
|
MsgLikeDetailPage(
|
|
isEnd: json['is_end'] as bool?,
|
|
);
|
|
}
|