Files
telegram-bot/Core/Cache/ICacheStorage.cs
T
2020-03-03 12:32:09 +04:00

10 lines
253 B
C#

using System;
namespace Kruzya.TelegramBot.Core.Cache
{
public interface ICacheStorage<TKey, TValue>
{
public bool TryGetValue(TKey key, out TValue value);
public void SetValue(TKey key, TValue value, int timeToLive);
}
}