mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9 lines
271 B
Dart
9 lines
271 B
Dart
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
part 'auth_state.freezed.dart';
|
|
|
|
@freezed
|
|
abstract class AuthState with _$AuthState {
|
|
const factory AuthState.authenticated() = Authenticated;
|
|
const factory AuthState.unauthenticated() = Unauthenticated;
|
|
}
|