import type {TimeStampDto} from "@/dto/TimeStampDto.ts"; export class AttendeeDto { public name: string; public constructor(name: string) { this.name = name; } }