15 lines
258 B
Dart
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}';
|
||
|
|
}
|
||
|
|
}
|