Files
rasadyar_application/lib/domain/entity/user/user_entity.dart
mr.mojtaba e83388670c fix : splash animation
feat : auth with password
chore : app Architecture
2025-04-07 16:49:15 +03:30

7 lines
110 B
Dart

class UserEntity {
String? token;
String? refreshToken;
UserEntity({this.token, this.refreshToken});
}