Walle.Api/AI.Common/Dtos/QuestionLogDto.cs

16 lines
329 B
C#

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