16 lines
382 B
C#
16 lines
382 B
C#
using MP.Data.DatabaseModels;
|
|
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>();
|
|
}
|
|
}
|