Files
letsmeet/front/src/dto/EventDto.ts
2025-03-21 17:57:07 +01:00

19 lines
499 B
TypeScript

import type {Attendee} from "@/models/Attendee.ts";
import type {EventDate} from "@/models/EventDate.ts";
import type {AttendeeDto} from "@/dto/AttendeeDto.ts";
import { AttendanceDto } from "./AttendanceDto.ts";
export class EventDto {
public name: string;
public token: string;
public attendances : AttendanceDto[];
public constructor(name: string, token: string, attendances : AttendanceDto[]) {
this.name = name;
this.token = token;
this.attendances = attendances;
}
}