Files
mapo-core/MP.Data/DTO/FermiCommentatiDTO.cs
Samuele E. Locatelli 50d65eebaa MP.DATA, riorganizzazioni varie:
- renaming classi gestione DbModels in
- spostamento anagrafica flussi da auth a generale
2025-03-08 10:40:09 +01:00

16 lines
376 B
C#

using MP.Data.DbModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.Data.DTO
{
public class FermiCommentatiDTO
{
public FermiNonQualModel Fermata { get; set; } = null!;
public List<CommentiModel> CommentiFermata { get; set; } = new List<CommentiModel>();
}
}