import { ParticipantStatus } from '@dafa-enums/participant-status.enum'; import { Service } from '@dafa-enums/service.enum'; export interface Participant { id: number; firstName: string; lastName: string; status: ParticipantStatus; nextStep: string; service: Service; errandNumber: number; startDate: Date; endDate: Date; handleBefore: Date; fullName?: string; }