TF-32 Add domain layer of export attachment for ios platform

This commit is contained in:
dab246
2021-09-16 09:46:14 +07:00
committed by Dat H. Pham
parent 20f98ce541
commit 0158142e45
15 changed files with 268 additions and 5 deletions
@@ -0,0 +1,19 @@
import 'package:core/core.dart';
class ExportAttachmentSuccess extends UIState {
final String filePath;
ExportAttachmentSuccess(this.filePath);
@override
List<Object> get props => [filePath];
}
class ExportAttachmentFailure extends FeatureFailure {
final exception;
ExportAttachmentFailure(this.exception);
@override
List<Object> get props => [exception];
}