refactor: adapt models to the new api
This commit is contained in:
@ -1,37 +1,7 @@
|
||||
/**
|
||||
* 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 detailed information about a group.
|
||||
*/
|
||||
export interface GroupDetailsResponse {
|
||||
/**
|
||||
* Gets or sets the unique identifier of the group.
|
||||
*/
|
||||
export interface GroupDetailsResponse {
|
||||
id: number;
|
||||
/**
|
||||
* Gets or sets the name of the group.
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* Gets or sets the course number of the group.
|
||||
*/
|
||||
courseNumber: number;
|
||||
/**
|
||||
* Gets or sets the unique identifier of the faculty to which the group belongs (optional).
|
||||
*/
|
||||
facultyId?: number;
|
||||
/**
|
||||
* Gets or sets the name of the faculty to which the group belongs (optional).
|
||||
*/
|
||||
facultyName?: string;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user