Neuste Version

This commit is contained in:
2026-06-07 23:36:45 +02:00
commit f636392e52
363 changed files with 70842 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace timetracker.Data;
public class User
{
public int Id { get; set; }
public string Username { get; set; } = "";
public string PasswordHash { get; set; } = "";
public string PasswordSalt { get; set; } = "";
}