TF-607 Delete authority oidc when logout

This commit is contained in:
dab246
2022-06-03 18:37:17 +07:00
committed by Dat H. Pham
parent ced3fecd1f
commit c445d3c71a
14 changed files with 105 additions and 18 deletions
@@ -0,0 +1,17 @@
import 'package:core/core.dart';
class DeleteAuthorityOidcSuccess extends UIState {
DeleteAuthorityOidcSuccess();
@override
List<Object> get props => [];
}
class DeleteAuthorityOidcFailure extends FeatureFailure {
final dynamic exception;
DeleteAuthorityOidcFailure(this.exception);
@override
List<Object> get props => [exception];
}