From 982c698dd2032d55557b978f066731818fc83e92 Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 16 Aug 2022 10:26:43 +0700 Subject: [PATCH] TF-838 Create UIActionState --- lib/features/base/state/ui_action_state.dart | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/features/base/state/ui_action_state.dart diff --git a/lib/features/base/state/ui_action_state.dart b/lib/features/base/state/ui_action_state.dart new file mode 100644 index 000000000..d53d19d01 --- /dev/null +++ b/lib/features/base/state/ui_action_state.dart @@ -0,0 +1,14 @@ + +import 'package:core/presentation/state/success.dart'; +import 'package:jmap_dart_client/jmap/core/state.dart' as jmap; + +class UIActionState extends UIState { + + jmap.State? currentEmailState; + jmap.State? currentMailboxState; + + UIActionState(this.currentEmailState, this.currentMailboxState); + + @override + List get props => [currentEmailState, currentMailboxState]; +} \ No newline at end of file