invoice/lib/redux/ui/entity_ui_state.dart

9 lines
201 B
Dart

import 'package:invoiceninja/redux/ui/list_ui_state.dart';
abstract class EntityUIState {
bool get isCreatingNew;
int get selectedId;
ListUIState get listUIState;
String get dropdownFilter;
}