TF-1842: Create deleteSendingEmail in domain layer

(cherry picked from commit b66931aa1b6cabb7ac32d9457d6d4ed69d3ea42d)
This commit is contained in:
HuyNguyen
2023-05-31 00:57:45 +07:00
committed by Dat Vu
parent 36ab1316e2
commit 22bba8c459
5 changed files with 61 additions and 0 deletions
@@ -0,0 +1,17 @@
import 'package:core/presentation/state/failure.dart';
import 'package:core/presentation/state/success.dart';
class DeleteSendingEmailLoading extends UIState {}
class DeleteSendingEmailSuccess extends UIState {
@override
List<Object?> get props => [];
}
class DeleteSendingEmailFailure extends FeatureFailure {
DeleteSendingEmailFailure(dynamic exception) : super(exception: exception);
@override
List<Object?> get props => [exception];
}