Files
PiliPlus/lib/models_new/user_real_name/reject_page.dart
2026-04-05 12:11:22 +08:00

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?,
);
}