mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 19:20:06 +01:00
feat: provide user data on login, minor fix to seeding, logical fixes
This commit is contained in:
9
DTOs/UserInfoDTO.cs
Normal file
9
DTOs/UserInfoDTO.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace QuotifyBE.DTOs;
|
||||
|
||||
public record class UserInfoDTO
|
||||
{
|
||||
public int Id { get; set; }
|
||||
required public string Name { get; set; }
|
||||
required public string Email { get; set; }
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user