Files
TaskHybrid/salesbook.Shared/Core/Dto/CheckVatRequestDTO.cs
2025-07-22 09:10:30 +02:00

12 lines
276 B
C#

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; }
}