App login is working
All checks were successful
Build Docker Images / test (push) Successful in 1m37s
Build Docker Images / build-and-push (push) Successful in 1m52s

This commit is contained in:
Michał Zieliński
2025-11-09 19:39:52 +01:00
parent 95438efcbd
commit f7b9009215
14 changed files with 466 additions and 227 deletions

View File

@@ -8,7 +8,7 @@ public class User
#region Properties
public Guid Id { get; init; }
public string? Email { get; init; }
public string? UserName { get; init; }
public string? UserName { get; set; }
public DateTime CreatedAt { get; init; }
#endregion
}