started api work

This commit is contained in:
Вячеслав 2025-03-25 22:22:57 +05:00
parent 6732613466
commit f9a680c554
3 changed files with 21 additions and 4 deletions

View file

@ -2,6 +2,6 @@ namespace SurveyBackend.DTOs;
public record UserLoginDTO
{
public string Email { get; set; }
public string Password { get; set; }
public required string Email { get; set; }
public required string Password { get; set; }
}