10 lines
241 B
C#
10 lines
241 B
C#
namespace BotSharp.Abstraction.Knowledges.Models;
|
|
|
|
public class KnowledgeChunk
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Content { get; set; }
|
|
public string SourceAgentId { get; set; }
|
|
}
|