import IAttachment from '../../Attachement'; export default interface IPickupMaterialEmail { readonly company: string; readonly full_name: string; readonly nb_pallets: number; readonly phone: string; readonly address: string; readonly attachments?: IAttachment[]; readonly admin: boolean; readonly subject: string; readonly title: string; }