Files
SystemExtensions/SystemExtensions.NetStandard.DependencyInjection/Configuration/IOptionsManager.cs
T
amacocian e6a06915cd Improve IHttpClient factories (#20)
Codestyle fixes
Setup CODEOWNERS
Setup dependabot
2022-09-06 15:49:07 +02:00

10 lines
180 B
C#

namespace System.Configuration;
public interface IOptionsManager
{
T GetOptions<T>()
where T : class;
void UpdateOptions<T>(T value)
where T : class;
}