Implemented settings, new scan, enhanced UI/UX
This commit is contained in:
@ -1,10 +1,9 @@
|
||||
abstract class AuthEvent {}
|
||||
|
||||
class Authenticate extends AuthEvent {
|
||||
String username;
|
||||
String password;
|
||||
class SetAuthenticatedEvent extends AuthEvent {
|
||||
String sessionId;
|
||||
|
||||
Authenticate({required this.username, required this.password});
|
||||
SetAuthenticatedEvent({required this.sessionId});
|
||||
}
|
||||
|
||||
class Logout extends AuthEvent {
|
||||
|
||||
Reference in New Issue
Block a user