10 lines
No EOL
271 B
C#
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; }
|
|
} |