import IAttachment from '../../Attachement'; export default interface I3DPrintEmail { readonly full_name: string; readonly email: string; readonly phone: string; readonly message?: string; readonly attachments?: IAttachment[]; readonly admin: boolean; readonly subject: string; readonly title: string; }