feat: jwt token example

This commit is contained in:
2025-07-15 10:22:53 +02:00
parent c277b190e6
commit b6dc1ce2cd
5 changed files with 103 additions and 1 deletions

10
DTOs/UserLoginDTO.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace QuotifyBE.DTOs;
public record class UserLoginDTO
{
required public string Email { get; set; }
required public string Password { get; set; }
// public UserLoginDTO() { }
};