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