Oui oui baguette

This commit is contained in:
Laurent
2025-03-19 14:27:15 +01:00
parent 83a0a23268
commit 9cea2c3239
21 changed files with 165 additions and 157 deletions

View File

@@ -0,0 +1,13 @@
import type {TimeStampDto} from "@/dto/TimeStampDto.ts";
export class AttendeeDto {
public name: string;
public dates: TimeStampDto[];
public constructor(name: string, dates: TimeStampDto[]) {
this.name = name;
this.dates = dates;
}
}