Iscrizione

This commit is contained in:
2025-12-02 17:15:05 +01:00
parent aa13cf1fc7
commit b4a6484909
23 changed files with 1668 additions and 218 deletions

View File

@ -20,4 +20,13 @@ public class Cliente : EntitaBase
[InverseProperty(nameof(Destinazione.Cliente))]
public List<Destinazione> Destinazioni { get; set; }
public string Rid { get; set; }
public ClienteTipo TipologiaCliente { get; set; }
}
public enum ClienteTipo
{
Cliente = 0,
Lead = 99
}