Files
.vscode
src
app
assets
components
config
services
shared
requests
responses
v1
campusBasicInfoResponse.ts
campusDetailsResponse.ts
disciplineResponse.ts
disciplineScheduleInfo.ts
disciplineScheduleResponse.ts
emailRequest.ts
errorResponse.ts
facultyDetailsResponse.ts
facultyResponse.ts
groupDetailsResponse.ts
groupResponse.ts
groupScheduleInfo.ts
groupScheduleResponse.ts
lectureHallDetailsResponse.ts
lectureHallResponse.ts
lectureHallScheduleInfo.ts
lectureHallScheduleResponse.ts
professorResponse.ts
professorScheduleInfo.ts
professorScheduleResponse.ts
scheduleResponse.ts
structs
favicon.ico
index.html
main.ts
styles.css
.editorconfig
.gitignore
README.md
angular.json
package-lock.json
package.json
tsconfig.app.json
tsconfig.json
tsconfig.spec.json
MireaFrontend/src/shared/responses/v1/professorResponse.ts
2024-06-05 21:36:51 +03:00

29 lines
844 B
TypeScript

/**
* MIREA Schedule Web API
* This API provides a convenient interface for retrieving data stored in the database. Special attention was paid to the lightweight and easy transfer of all necessary data. Made by the Winsomnia team.
*
* OpenAPI spec version: 1.0
* Contact: support@winsomnia.net
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/**
* Represents information about a professor.
*/
export interface ProfessorResponse {
/**
* Gets or sets the unique identifier of the professor.
*/
id: number;
/**
* Gets or sets the name of the professor.
*/
name: string;
/**
* Gets or sets the alternate name of the professor (optional).
*/
altName?: string;
}