11 lines
321 B
C#
11 lines
321 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";
|
|
}
|