mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 03:06:59 +08:00
12 lines
244 B
Dart
12 lines
244 B
Dart
class RejectPage {
|
|
String? title;
|
|
String? text;
|
|
|
|
RejectPage({this.title, this.text});
|
|
|
|
factory RejectPage.fromJson(Map<String, dynamic> json) => RejectPage(
|
|
title: json['title'] as String?,
|
|
text: json['text'] as String?,
|
|
);
|
|
}
|