Files
PiliPlus/lib/models_new/reply/folder.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

14 lines
336 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?,
);
}