9 lines
232 B
C#
9 lines
232 B
C#
|
|
// ChatbotApi/Services/CacheKeys.cs
|
||
|
|
namespace ChatbotApi.Services
|
||
|
|
{
|
||
|
|
public static class CacheKeys
|
||
|
|
{
|
||
|
|
public const string KnowledgeItems = "KnowledgeBase";
|
||
|
|
public const string FuentesDeContexto = "FuentesDeContexto";
|
||
|
|
}
|
||
|
|
}
|