Files
rasadyar_application/lib/domain/entity/user/user_entity.dart

7 lines
110 B
Dart
Raw Normal View History

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