11 lines
268 B
C#
11 lines
268 B
C#
namespace BotSharp.Abstraction.Knowledges.Models;
|
|
|
|
public class ExtractedKnowledge
|
|
{
|
|
[JsonPropertyName("question")]
|
|
public string Question { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("answer")]
|
|
public string Answer { get; set; } = string.Empty;
|
|
}
|