DTOs docs
This commit is contained in:
parent
fb3320fe18
commit
d692a2e519
8 changed files with 104 additions and 1 deletions
|
|
@ -1,7 +1,16 @@
|
|||
namespace SurveyBackend.DTOs;
|
||||
|
||||
/// <summary>
|
||||
/// Схема авторизации пользователя
|
||||
/// </summary>
|
||||
public record UserLoginDto
|
||||
{
|
||||
/// <summary>
|
||||
/// Почта
|
||||
/// </summary>
|
||||
public required string Email { get; set; }
|
||||
/// <summary>
|
||||
/// Пароль
|
||||
/// </summary>
|
||||
public required string Password { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue