add structure
This commit is contained in:
14
lib/vo/attach.dart
Normal file
14
lib/vo/attach.dart
Normal 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}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user