feat: add api models
This commit is contained in:
29
src/shared/requests/v1/createUserRequest.ts
Normal file
29
src/shared/requests/v1/createUserRequest.ts
Normal file
@ -0,0 +1,29 @@
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Request model for creating a user.
|
||||
*/
|
||||
export interface CreateUserRequest {
|
||||
/**
|
||||
* Gets or sets the email address of the user.
|
||||
*/
|
||||
email: string;
|
||||
/**
|
||||
* Gets or sets the username of the user.
|
||||
*/
|
||||
username: string;
|
||||
/**
|
||||
* Gets or sets the password of the user.
|
||||
*/
|
||||
password: string;
|
||||
}
|
Reference in New Issue
Block a user