FluxLogDTO:

- Update modello dati x gestione nuovo DTO
- bozza udpatre DB e servizio
This commit is contained in:
Samuele Locatelli
2022-10-12 06:20:54 +02:00
parent a4810826f8
commit d5f5cf9b11
12 changed files with 169 additions and 89 deletions
+4 -2
View File
@@ -13,8 +13,10 @@ namespace MP.Data.DTO
{
public class DossierFluxLogDTO
{
public List<FluxLog> ODL { get; set; } = new List<FluxLog>();
/// <summary>
/// Elenco valori FluxLogDTO serializzato (compreso valori edit)
/// </summary>
public List<FluxLogDTO> ODL { get; set; } = new List<FluxLogDTO>();
public List<FluxLog> SEND { get; set; } = new List<FluxLog>();
}
}