Creato form per Clienti/Prospect

This commit is contained in:
2025-07-08 15:33:33 +02:00
parent bf2e1b65f0
commit 65e48777e6
8 changed files with 272 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
namespace salesbook.Shared.Core.Dto;
public class UserDTO
{
public string? CodAnag { get; set; }
public string? RagSoc { get; set; }
public string? Indirizzo { get; set; }
public string? Cap { get; set; }
public string? Citta { get; set; }
public string? Prov { get; set; }
public string? Nazione { get; set; }
public string? PartIva { get; set; }
}