2025SELab2-project-Dwengo/common/src/interfaces/class.ts
2025-04-06 17:18:13 +02:00

6 lines
119 B
TypeScript

export interface ClassDTO {
id: string;
displayName: string;
teachers: string[];
students: string[];
}