mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-23 12:10:33 +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,
|
|
};
|
|
}
|