refactor: adapt models to the new api

This commit is contained in:
2024-12-18 06:48:51 +03:00
parent 99958a2383
commit 21f89132ff
37 changed files with 199 additions and 189 deletions

View File

@ -0,0 +1,5 @@
export interface ProfessorResponse {
id: number;
name: string;
altName?: string;
}