mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-25 03:26:22 +08:00
11
lib/models_new/reply/up_action.dart
Normal file
11
lib/models_new/reply/up_action.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user