using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AI.Common.Dtos { public class QuestionLogDto { public long Id { get; set; } public string QuestionContent { get; set; } public string? GptAnswer { get; set; } } }