ab2c32154e
Signed-off-by: dab246 <tdvu@linagora.com>
11 lines
327 B
Dart
11 lines
327 B
Dart
import 'package:core/presentation/state/failure.dart';
|
|
import 'package:core/presentation/state/success.dart';
|
|
|
|
class PrintEmailLoading extends LoadingState {}
|
|
|
|
class PrintEmailSuccess extends UIState {}
|
|
|
|
class PrintEmailFailure extends FeatureFailure {
|
|
|
|
PrintEmailFailure({dynamic exception}) : super(exception: exception);
|
|
} |