survey-webapp/SurveyBackend/SurveyBackend.API/DTOs/UserRegistrationDTO.cs
2025-03-25 22:05:28 +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; }
}