import IEmail from './IEmail'; export default interface IApplicationEmail extends IEmail { readonly Attachments?: { readonly Name: string; readonly ContentID: string; readonly Content: string; readonly ContentType: string; }[]; readonly TemplateModel: { readonly subject: string; readonly company_logo_href: string; readonly company_logo_src: string; readonly english: boolean; readonly domaine: string; readonly message: string; readonly cv: any; readonly [key: string]: any; }; }