7 lines
No EOL
140 B
C#
7 lines
No EOL
140 B
C#
namespace SurveyBackend.DTOs;
|
|
|
|
public record UserLoginDTO
|
|
{
|
|
public string Email { get; set; }
|
|
public string Password { get; set; }
|
|
} |