Aggiunte chiamate api per dati utili
This commit is contained in:
12
SteUp.Shared/Core/Dto/JtbFasiDto.cs
Normal file
12
SteUp.Shared/Core/Dto/JtbFasiDto.cs
Normal 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; }
|
||||
}
|
||||
9
SteUp.Shared/Core/Dto/StbActivityTypeDto.cs
Normal file
9
SteUp.Shared/Core/Dto/StbActivityTypeDto.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SteUp.Shared.Core.Dto;
|
||||
|
||||
public class StbActivityTypeDto
|
||||
{
|
||||
[JsonPropertyName("activityTypeId")]
|
||||
public string? ActivityTypeId { get; set; }
|
||||
}
|
||||
18
SteUp.Shared/Core/Dto/StbActivityTyperDto.cs
Normal file
18
SteUp.Shared/Core/Dto/StbActivityTyperDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace SteUp.Shared.Core.Dto;
|
||||
|
||||
public class StbActivityTyperDto
|
||||
{
|
||||
[JsonPropertyName("activityTypeId")]
|
||||
public string? ActivityTypeId { get; set; }
|
||||
|
||||
[JsonPropertyName("activityTypeDescription")]
|
||||
public string? ActivityTypeDescription { get; set; }
|
||||
|
||||
[JsonPropertyName("flagTipologia")]
|
||||
public string? FlagTipologia { get; set; }
|
||||
|
||||
[JsonPropertyName("idRiga")]
|
||||
public int IdRiga { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user