export interface IAttachmentDTO { attachmentId: number; caption: string; data: string; contentType: string; preview: string; metadata: string; } export interface ISppiPersonDTO { name: string; surname: string; patronymic?: string; phone: string; email?: string; externalPilotCertificateNumber?: string; externalPilotCertificate?: IAttachmentDTO; externalPilotCertificateAttachmentId?: number; }