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