15 lines
517 B
C#
15 lines
517 B
C#
namespace BotSharp.Abstraction.Knowledges.Enums;
|
|
|
|
public static class KnowledgePayloadName
|
|
{
|
|
public static string Text = "text";
|
|
public static string Question = "question";
|
|
public static string Answer = "answer";
|
|
public static string Request = "request";
|
|
public static string Response = "response";
|
|
public static string DataSource = "dataSource";
|
|
public static string FileId = "fileId";
|
|
public static string FileName = "fileName";
|
|
public static string FileSource = "fileSource";
|
|
}
|