50d65eebaa
- renaming classi gestione DbModels in - spostamento anagrafica flussi da auth a generale
16 lines
376 B
C#
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>();
|
|
}
|
|
}
|