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