27 lines
No EOL
565 B
C#
27 lines
No EOL
565 B
C#
namespace SurveyBackend.DTOs.User;
|
|
|
|
/// <summary>
|
|
/// Схема регистрации пользователя
|
|
/// </summary>
|
|
public record UserRegistrationDto
|
|
{
|
|
/// <summary>
|
|
/// Почта
|
|
/// </summary>
|
|
public required string Email { get; set; }
|
|
|
|
/// <summary>
|
|
/// Имя
|
|
/// </summary>
|
|
public string FirstName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Фамилия
|
|
/// </summary>
|
|
public string LastName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Пароль
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
} |