start core project

rename project to API
This commit is contained in:
Вячеслав 2025-03-25 16:25:43 +05:00
parent e43578b36d
commit ba7ac36920
11 changed files with 59 additions and 64 deletions

View file

@ -0,0 +1,11 @@
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; }
}