BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeCreationModel.cs
2024-08-09 17:39:54 -05:00

7 lines
147 B
C#

namespace BotSharp.Abstraction.Knowledges.Models;
public class KnowledgeCreationModel
{
public string Content { get; set; } = string.Empty;
}