Files
mapo-core/MP.Data/DTO/FermiCommentatiDTO.cs
T
2023-10-27 15:14:55 +02:00

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>();
}
}