2024-09-27 14:55:34 +02:00
|
|
|
export interface CreateMemberQualificationCommand {
|
|
|
|
note?: string;
|
|
|
|
start: Date;
|
2025-01-29 08:53:49 +01:00
|
|
|
memberId: string;
|
2024-09-27 14:55:34 +02:00
|
|
|
qualificationId: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateMemberQualificationCommand {
|
|
|
|
id: number;
|
|
|
|
note?: string;
|
|
|
|
start: Date;
|
|
|
|
end?: Date;
|
|
|
|
terminationReason?: string;
|
2025-01-29 08:53:49 +01:00
|
|
|
memberId: string;
|
2024-09-27 14:55:34 +02:00
|
|
|
qualificationId: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DeleteMemberQualificationCommand {
|
|
|
|
id: number;
|
2025-01-29 08:53:49 +01:00
|
|
|
memberId: string;
|
2024-09-27 14:55:34 +02:00
|
|
|
}
|