mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
14 lines
272 B
Dart
14 lines
272 B
Dart
class EpisodicButton {
|
|
String? text;
|
|
String? uri;
|
|
|
|
EpisodicButton({this.text, this.uri});
|
|
|
|
factory EpisodicButton.fromJson(Map<String, dynamic> json) {
|
|
return EpisodicButton(
|
|
text: json['text'] as String?,
|
|
uri: json['uri'] as String?,
|
|
);
|
|
}
|
|
}
|