17 lines
386 B
TypeScript
17 lines
386 B
TypeScript
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;
|
|
}
|