mirror of
https://github.com/supanadit/geo-smart-app.git
synced 2025-02-08 00:58:36 +00:00
13 lines
286 B
Dart
13 lines
286 B
Dart
|
import 'package:equatable/equatable.dart';
|
||
|
|
||
|
class AuthenticationEvent extends Equatable {
|
||
|
const AuthenticationEvent();
|
||
|
|
||
|
@override
|
||
|
List<Object> get props => [];
|
||
|
}
|
||
|
|
||
|
class AuthenticationStarted extends AuthenticationEvent {}
|
||
|
|
||
|
class AuthenticationClear extends AuthenticationEvent {}
|