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