9 lines
252 B
C#
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;
|
|
}
|