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