fix: dto consistency

This commit is contained in:
2026-03-21 14:13:19 -05:00
parent 817e0b97e6
commit ef4f0c0159
2 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
public class RegisterDto {
public string Username { get; set; } = "";
public string Name { get; set; } = "";
public string Email { get; set; } = "";
public string Password { get; set; } = "";
@@ -9,7 +9,7 @@ public class RegisterDto {
public class LoginDto {
public string Username { get; set; } = "";
public string Name { get; set; } = "";
public string Password { get; set; } = "";
}