BotSharp/src/Infrastructure/BotSharp.Abstraction/Knowledges/Models/KnowledgeFeedModel.cs
2023-06-18 13:15:00 -05:00

9 lines
252 B
C#

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