survey-webapp/SurveyBackend/SurveyBackend.API/DTOs/UserRegistrationDto.cs
2025-04-08 19:08:17 +05:00

10 lines
No EOL
271 B
C#

namespace SurveyBackend.DTOs;
public record UserRegistrationDto
{
public string Email { get; set; }
public string Username { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Password { get; set; }
}