TF-1317 Update authentication account to store AccountId
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class UpdateAuthenticationAccountLoading extends LoadingState {}
|
||||
|
||||
class UpdateAuthenticationAccountSuccess extends UIState {
|
||||
|
||||
UpdateAuthenticationAccountSuccess();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class UpdateAuthenticationAccountFailure extends FeatureFailure {
|
||||
final dynamic exception;
|
||||
|
||||
UpdateAuthenticationAccountFailure(this.exception);
|
||||
|
||||
@override
|
||||
List<Object?> get props => [exception];
|
||||
}
|
||||
Reference in New Issue
Block a user