2025SELab2-project-Dwengo/common/src/interfaces/teacher-invitation.d.ts

8 lines
205 B
TypeScript

import { UserDTO } from './user';
import { ClassDTO } from './class';
export interface TeacherInvitationDTO {
sender: string | UserDTO;
receiver: string | UserDTO;
class: string | ClassDTO;
}