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

@@ -1,17 +1,17 @@
import type {Participant} from "@/models/Participant.ts";
import type {Attendee} from "@/models/Attendee.ts";
import type {TimeStamp} from "@/models/TimeStamp.ts";
import type {ParticipantDto} from "@/dto/ParticipantDto.ts";
import type {AttendeeDto} from "@/dto/AttendeeDto.ts";
export class EventDto {
public name: string;
public token: string;
public participants: ParticipantDto[];
public attendees: AttendeeDto[];
public constructor(name: string, token: string, participants: ParticipantDto[]) {
public constructor(name: string, token: string, attendees: AttendeeDto[]) {
this.name = name;
this.token = token;
this.participants = participants;
this.attendees = attendees;
}
}