Fix creazione

This commit is contained in:
2025-12-02 12:38:59 +01:00
parent f9081e6fe7
commit c86a844217
2 changed files with 11 additions and 2 deletions

View File

@ -4,6 +4,12 @@ namespace StandManager.Domain.Entita;
public class Utente : EntitaBase
{
public Utente()
{
DataCreazione = DateTime.Now;
Eliminato = false;
Username = string.Empty;
}
public string Username { get; set; }
public string Email { get; set; }
public string Password { get; set; }