Initial draft
This commit is contained in:
9
lib/feature/authentication/bloc/auth_state.dart
Normal file
9
lib/feature/authentication/bloc/auth_state.dart
Normal file
@ -0,0 +1,9 @@
|
||||
abstract class AuthState {}
|
||||
|
||||
class Unauthenticated extends AuthState {}
|
||||
class Authenticated extends AuthState {
|
||||
String teamId;
|
||||
|
||||
Authenticated({required this.teamId});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user