BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/ICacheKey.cs
2024-08-22 06:54:50 -05:00

7 lines
106 B
C#

namespace BotSharp.Abstraction.Infrastructures;
public interface ICacheKey
{
string GetCacheKey();
}