Created simple login page, and User model

This commit is contained in:
Martin Berg Alstad
2023-07-20 14:47:13 +02:00
parent 745f292eee
commit 5e21947870
16 changed files with 183 additions and 32 deletions

View File

@ -0,0 +1,8 @@
namespace DAL.Database.Models;
public class User
{
public required string Username { get; init; }
public required string Password { get; init; } // TODO use hashing and salt
public string? Colour { get; init; }
}