BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeCreationModel.cs

7 lines
147 B
C#
Raw Normal View History

2023-12-30 03:54:41 +00:00
namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeCreationModel
{
public string Content { get; set; } = string.Empty;
}