Events can be joined and created

This commit is contained in:
Laurent
2025-03-20 20:32:21 +01:00
parent 135ba81bb6
commit 4bbbd94ad2
12 changed files with 195 additions and 99 deletions

View File

@@ -6,9 +6,9 @@ export class EventDto {
public name: string;
public token: string;
public dates : Map<EventDate, Attendee[]>
public dates : Map<number, AttendeeDto[]>
public constructor(name: string, token: string, dates: Map<EventDate, Attendee[]>) {
public constructor(name: string, token: string, dates: Map<number, AttendeeDto[]>) {
this.name = name;
this.token = token;
this.dates = dates;