3a5b77314a
- DTO e MOdelli NON riorganizzabili - refresh globale ordinamenti - test rebuild
19 lines
413 B
C#
19 lines
413 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>();
|
|
}
|
|
}
|