13 lines
385 B
C#
13 lines
385 B
C#
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; }
|
|
} |