mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
feat: edit dyn
feat: set pub setting feat: set reply interaction Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
14
lib/models_new/reply_interaction/interact_status.dart
Normal file
14
lib/models_new/reply_interaction/interact_status.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
class InteractStatus {
|
||||
bool canModify;
|
||||
int status;
|
||||
|
||||
InteractStatus({
|
||||
required this.canModify,
|
||||
required this.status,
|
||||
});
|
||||
|
||||
factory InteractStatus.fromJson(Map<String, dynamic> json) => InteractStatus(
|
||||
canModify: json["can_modify"],
|
||||
status: json["status"],
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user