mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
14 lines
241 B
Dart
14 lines
241 B
Dart
class ModuleTitle {
|
|
String? text;
|
|
|
|
ModuleTitle({this.text});
|
|
|
|
factory ModuleTitle.fromJson(Map<String, dynamic> json) => ModuleTitle(
|
|
text: json['text'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'text': text,
|
|
};
|
|
}
|