Controllo p.Iva

This commit is contained in:
2025-07-22 09:10:30 +02:00
parent 7bcb0581cc
commit b34f6cb213
12 changed files with 424 additions and 213 deletions

View File

@@ -0,0 +1,12 @@
using System.Text.Json.Serialization;
namespace salesbook.Shared.Core.Dto;
public class CheckVatRequestDTO
{
[JsonPropertyName("countryCode")]
public string CountryCode { get; set; }
[JsonPropertyName("vatNumber")]
public string VatNumber { get; set; }
}