refactor: adapt models to the new api

This commit is contained in:
2024-12-18 06:50:41 +03:00
parent 21f89132ff
commit 3af8c43cd9
16 changed files with 40 additions and 466 deletions

View File

@ -1,25 +1,4 @@
/**
* 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 discipline.
*/
export interface DisciplineResponse {
/**
* Gets or sets the unique identifier of the discipline.
*/
export interface DisciplineResponse {
id: number;
/**
* Gets or sets the name of the discipline.
*/
name: string;
}
}