Files
PiliPlus/lib/models_new/user_real_name/reject_page.dart
bggRGjQaUbCoE 3d49529272 show user name
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-10-09 16:48:42 +08:00

20 lines
395 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?,
);
Map<String, dynamic> toJson() => {
'title': title,
'text': text,
'img': img,
};
}