Files
SteUP_Dotnet/SteUp.Shared/Core/Dto/JtbFasiDto.cs

12 lines
266 B
C#

using System.Text.Json.Serialization;
namespace SteUp.Shared.Core.Dto;
public class JtbFasiDto
{
[JsonPropertyName("codJfas")]
public string? CodJfas { get; set; }
[JsonPropertyName("descrizione")]
public string? Descrizione { get; set; }
}