10 lines
171 B

using System.Collections.Generic;
namespace ReZero.SuperAPI
{
public interface ICacheManager<T>
{
void ClearCache();
List<T> GetList();
}
}