namespace Harmonia.Core.Caching; public interface ICache { TValue? Get(TKey key); TValue? Refresh(TKey key); }