Files
fcs/lib/vo/attach.dart
2020-05-29 07:45:27 +06:30

15 lines
258 B
Dart

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}';
}
}