mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 16:00:06 +01:00
feat: jwt token example
This commit is contained in:
10
DTOs/UserLoginDTO.cs
Normal file
10
DTOs/UserLoginDTO.cs
Normal 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() { }
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user