Initial draft
This commit is contained in:
14
lib/feature/authentication/bloc/auth_event.dart
Normal file
14
lib/feature/authentication/bloc/auth_event.dart
Normal file
@ -0,0 +1,14 @@
|
||||
abstract class AuthEvent {}
|
||||
|
||||
class Authenticate extends AuthEvent {
|
||||
String username;
|
||||
String password;
|
||||
|
||||
Authenticate({required this.username, required this.password});
|
||||
}
|
||||
|
||||
class Logout extends AuthEvent {
|
||||
String username;
|
||||
|
||||
Logout({required this.username});
|
||||
}
|
||||
Reference in New Issue
Block a user