using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DTO { public class CommentaryDTO { public int Id { get; set; } public string Comment { get; set; } public DateTime Date { get; set; } public string User { get; set; } public string ImagePath { get; set; } } }