Initial
This commit is contained in:
16
StandManager.Domain/Entita/Utente.cs
Normal file
16
StandManager.Domain/Entita/Utente.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
|
||||
public class Utente : EntitaBase
|
||||
{
|
||||
public string Username { get; set; }
|
||||
public string Email { get; set; }
|
||||
public string Password { get; set; }
|
||||
public string Nome { get; set; }
|
||||
public string Cognome { get; set; }
|
||||
public override string ToString()
|
||||
{
|
||||
return $"{Nome} {Cognome}";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user