Files
PiliPlus/lib/models_new/reply/folder.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

14 lines
352 B
Dart

class ReplyFolder {
bool? hasFolded;
bool? isFolded;
String? rule;
ReplyFolder({this.hasFolded, this.isFolded, this.rule});
factory ReplyFolder.fromJson(Map<String, dynamic> json) => ReplyFolder(
hasFolded: json['has_folded'] as bool?,
isFolded: json['is_folded'] as bool?,
rule: json['rule'] as String?,
);
}