Primo sviluppo sincronizzazione e migliorie ui

This commit is contained in:
2025-05-19 16:47:21 +02:00
parent 6f08ba87be
commit 626408412b
66 changed files with 1824 additions and 91 deletions

View File

@@ -0,0 +1,12 @@
using Template.Shared.Core.Entity;
namespace Template.Shared.Core.Dto;
public class TaskSyncResponseDTO
{
public List<AnagClie>? AnagClie { get; set; }
public List<VtbDest>? VtbDest { get; set; }
public List<VtbCliePersRif>? VtbCliePersRif { get; set; }
public List<PtbPros>? PtbPros { get; set; }
public List<PtbProsRif>? PtbProsRif { get; set; }
}