mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-16 23:00:07 +01:00
11 lines
262 B
C#
11 lines
262 B
C#
namespace QuotifyBE.Entities
|
|
{
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
required public string Name { get; set; }
|
|
required public string Email { get; set; }
|
|
required public string PasswordHash { get; set; }
|
|
}
|
|
}
|