Aggiunte chiamate api per dati utili

This commit is contained in:
2026-02-12 12:59:46 +01:00
parent 5afe4f4745
commit 06cc41ef8b
8 changed files with 70 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
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; }
}