- Lavoro su pagina IscrizioneEvento (Home.razor)
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using StandManager.Domain.Entita.Base;
|
||||
using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace StandManager.Domain.Entita;
|
||||
@ -25,4 +26,26 @@ public class IscrizioneEvento : EntitaBase
|
||||
public string QrCodeCode{ get; set; }
|
||||
public bool ScanCompleto{ get; set; }
|
||||
public DateTime? DataScan{ get; set; }
|
||||
public string? Nome{ get; set; }
|
||||
public string? Cognome{ get; set; }
|
||||
public string? Email { get; set; }
|
||||
public string? NumeroTelefono { get; set; }
|
||||
public string? Provincia { get; set; }
|
||||
public string? Comune { get; set; }
|
||||
public string? Cap { get; set; }
|
||||
public string? RagioneSociale { get; set; }
|
||||
public ClienteTipo Tipologia { get; set; }
|
||||
public string? EsperienzaConDAC { get; set; }
|
||||
public RuoloTipo Ruolo { get; set; }
|
||||
}
|
||||
|
||||
public enum RuoloTipo
|
||||
{
|
||||
[Description("Titolare dell'azienda")]
|
||||
Titolare = 0,
|
||||
[Description("Dipendente dell'azienda")]
|
||||
Dipendente = 10,
|
||||
[Description("Libera Professione")]
|
||||
LiberaProfessione = 100,
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user