23 lines
614 B
C#
23 lines
614 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ApplicationSystem.Contracts.Models.UserRequests
|
|
{
|
|
/// <summary>
|
|
/// Запрос на вход
|
|
/// </summary>
|
|
public record LoginRequest
|
|
{
|
|
/// <summary>
|
|
/// Логин пользователя
|
|
/// </summary>
|
|
[Required(AllowEmptyStrings = false)]
|
|
public string Email { get; init; } = null!;
|
|
|
|
/// <summary>
|
|
/// Пароль пользователя
|
|
/// </summary>
|
|
[Required(AllowEmptyStrings = false)]
|
|
public string Password { get; init; } = null!;
|
|
}
|
|
}
|