Files

10 lines
253 B
C#
Raw Permalink Normal View History

2020-03-03 11:36:00 +04:00
using System;
namespace Kruzya.TelegramBot.Core.Cache
{
public interface ICacheStorage<TKey, TValue>
{
2020-03-03 12:32:09 +04:00
public bool TryGetValue(TKey key, out TValue value);
2020-03-03 11:36:00 +04:00
public void SetValue(TKey key, TValue value, int timeToLive);
}
}