using Recyclarr.TrashLib.Config.Services; namespace Recyclarr.TrashLib.Cache; public interface IServiceCache { T? Load(IServiceConfiguration config) where T : class; void Save(T obj, IServiceConfiguration config) where T : class; }