mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-18 16:16:14 +08:00
14 lines
336 B
Dart
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?,
|
|
);
|
|
}
|