add structure

This commit is contained in:
2020-05-29 07:45:27 +06:30
parent 4c851d9971
commit bad27ba5c4
272 changed files with 36065 additions and 174 deletions

14
lib/vo/attach.dart Normal file
View File

@@ -0,0 +1,14 @@
import 'dart:io';
class AttachFile {
File orderFile;
File storageFile;
String action;
AttachFile({this.orderFile, this.storageFile});
@override
String toString() {
return 'AttachFile{orderFile:$orderFile, storageFile:$storageFile}';
}
}