/
DevMaster
/
student_simulator
Обзор
Документация
Войти
/
DevMaster
/
student_simulator
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
mobile/student_simulator_app/lib/Model/UserModel.dart
23 строки
421 B
HubOl01
changes in the news, guides and settings
21 мар 2023, 15:10
21 мар 2023, 15:10
12edf97
Код
Авторство
О чём код?
class UserModel { String username; String login; String pass; String avatar_url; String? description; bool verifed; String status; String? role_user; int? score; UserModel({ required this.username, required this.login, required this.pass, required this.avatar_url, required this.verifed, required this.status, this.description, this.role_user, this.score, }); }