2026-04-22 20:57:19 +07:00

6 lines
121 B
Dart

class UserEntity {
final String token;
final String role;
UserEntity({required this.token, required this.role});
}