7 lines
147 B
C#
7 lines
147 B
C#
namespace BotSharp.Abstraction.Knowledges.Models;
|
|
|
|
public class KnowledgeCreationModel
|
|
{
|
|
public string Content { get; set; } = string.Empty;
|
|
}
|