add auth files
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 9s

This commit is contained in:
2026-03-16 21:44:33 -05:00
parent 96026d448f
commit d8f64754b4
3 changed files with 119 additions and 0 deletions

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; } = "";
}