11 lines
No EOL
261 B
C#
11 lines
No EOL
261 B
C#
namespace SurveyBackend.Core.Models;
|
|
|
|
public class User
|
|
{
|
|
public int Id { get; set; }
|
|
public string Username { get; set; }
|
|
public string Email { get; set; }
|
|
|
|
public byte[] PasswordHash { get; set; }
|
|
public byte[] PasswordSalt { get; set; }
|
|
} |