start core project
rename project to API
This commit is contained in:
parent
e43578b36d
commit
ba7ac36920
11 changed files with 59 additions and 64 deletions
11
SurveyBackend/SurveyBackend.Core/Models/User.cs
Normal file
11
SurveyBackend/SurveyBackend.Core/Models/User.cs
Normal 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; }
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue