generated from Integry/Template_NetMauiBlazorHybrid
12 lines
276 B
C#
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; }
|
|
} |