9 lines
293 B
C#
9 lines
293 B
C#
namespace Toolkit.Foundation
|
|
{
|
|
public interface IConfigurationCache
|
|
{
|
|
bool Remove(string section);
|
|
void Set<TConfiguration>(string section, TConfiguration configuration);
|
|
bool TryGet<TConfiguration>(string section, out TConfiguration? configuration);
|
|
}
|
|
} |