mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 11:22:16 +08:00
13
lib/models_new/reply/folder.dart
Normal file
13
lib/models_new/reply/folder.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user