Learn.VideoAnalysis/VideoAnalysisCore/AICore/ChatGPT/Dto/QuestionRes.cs

26 lines
562 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VideoAnalysisCore.AICore.ChatGPT.Dto
{
public class QuestionRes
{
/// <summary>
/// 对应问题的id
/// </summary>
public int { get; set; }
/// <summary>
/// 结果
/// </summary>
public object? { get; set; }
/// <summary>
/// 问题解释
/// </summary>
public string? { get; set; }
}
}