2025SELab2-project-Dwengo/common/src/interfaces/group.ts
2025-04-08 10:25:30 +02:00

8 lines
221 B
TypeScript

import { AssignmentDTO } from './assignment';
import { StudentDTO } from './student';
export interface GroupDTO {
assignment: number | AssignmentDTO;
groupNumber: number;
members?: string[] | StudentDTO[];
}