mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
12 lines
228 B
Dart
12 lines
228 B
Dart
class UpAction {
|
|
bool? like;
|
|
bool? reply;
|
|
|
|
UpAction({this.like, this.reply});
|
|
|
|
factory UpAction.fromJson(Map<String, dynamic> json) => UpAction(
|
|
like: json['like'] as bool?,
|
|
reply: json['reply'] as bool?,
|
|
);
|
|
}
|