mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
feat: set pub setting feat: set reply interaction Signed-off-by: dom <githubaccount56556@proton.me>
15 lines
287 B
Dart
15 lines
287 B
Dart
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"],
|
|
);
|
|
}
|