Files
mapo-core/MP.Data/DTO/DossierFluxLogDTO.cs
T
2022-10-11 13:03:56 +02:00

21 lines
489 B
C#

using MP.Data.DatabaseModels;
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.Data.DTO
{
public class DossierFluxLogDTO
{
public List<FluxLog> ODL { get; set; } = new List<FluxLog>();
public List<FluxLog> OdlClone { get; set; } = new List<FluxLog>();
}
}