using Marco.Pms.Model.Utilities; namespace Marco.Pms.Model.Dtos.Activities { public class CreateCommentDto { public Guid TaskAllocationId { get; set; } public DateTime CommentDate { get; set; } public string? Comment { get; set; } public List? Images { get; set; } } }