survey-webapp/SurveyBackend/SurveyBackend.Core/Models/User.cs
shept ba7ac36920 start core project
rename project to API
2025-03-25 16:25:43 +05:00

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; }
}