I would like the form Name to be filled in automatically by the username of the logged in user.
How do I include this property in my Model ?
public class Condominio
{
public int CondominioId { get; set; }
public string Nome { get; set; }
public int CEP { get; set; }
public string Endereco { get; set; }
public int Numero { get; set; }
}
}