new project stable version
This commit is contained in:
9
lib/domain/entities/user_auth_data.dart
Normal file
9
lib/domain/entities/user_auth_data.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class UserAuthData {
|
||||
final String accessToken;
|
||||
final String refreshToken;
|
||||
|
||||
UserAuthData({
|
||||
required this.accessToken,
|
||||
required this.refreshToken,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user