i changed a filename oops
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 4s

This commit is contained in:
2026-03-20 21:09:16 -05:00
parent 109d5f88ea
commit f7b537cbed

15
api/src/Models/Dto.cs Normal file
View File

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