feat: edit dyn

feat: set pub setting

feat: set reply interaction

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-01-13 10:16:45 +08:00
parent 4a2679a589
commit cb58822009
16 changed files with 826 additions and 131 deletions

View 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"],
);
}