Files
workavia-mail-front/model/lib/email/eml_attachment.dart
T
2024-05-16 15:50:01 +07:00

15 lines
237 B
Dart

import 'package:model/email/attachment.dart';
class EMLAttachment extends Attachment {
EMLAttachment({
super.partId,
super.blobId,
super.size,
super.name,
super.type,
super.cid,
super.disposition,
});
}