mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-30 23:29:47 +08:00
show user name
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
19
lib/models_new/user_real_name/reject_page.dart
Normal file
19
lib/models_new/user_real_name/reject_page.dart
Normal file
@@ -0,0 +1,19 @@
|
||||
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?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'title': title,
|
||||
'text': text,
|
||||
'img': img,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user