Files
Yashar Panahi 64c4ebf0f8 feat: add arch
2025-08-02 12:31:42 +03:30

7 lines
120 B
Dart

class UserModel {
final String token;
final String name;
UserModel({required this.token, required this.name});
}