using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; #nullable disable // // This is here so CodeMaid doesn't reorganize this document // namespace MP.Core.DTO { public class DossierFluxLogDTO { /// /// Elenco valori FluxLogDTO serializzato (compreso valori edit) /// public List ODL { get; set; } = new List(); } }