mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 10:36:24 +08:00
refa: article (#757)
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
13
lib/models/dynamics/opus_detail/module_title.dart
Normal file
13
lib/models/dynamics/opus_detail/module_title.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user