TF-816: get list email forward

This commit is contained in:
ManhNTX
2022-08-18 10:18:59 +07:00
committed by Dat H. Pham
parent 35eb29c1cf
commit c171f5fc24
26 changed files with 447 additions and 24 deletions
@@ -0,0 +1,20 @@
import 'package:core/core.dart';
import 'package:forward/forward/tmail_forward.dart';
class GetForwardSuccess extends UIState {
final TMailForward forward;
GetForwardSuccess(this.forward);
@override
List<Object?> get props => [forward];
}
class GetForwardFailure extends FeatureFailure {
final dynamic exception;
GetForwardFailure(this.exception);
@override
List<Object> get props => [exception];
}