Files
SystemExtensions/SystemExtensions.NetStandard.DependencyInjection/Configuration/IOptionsManager.cs
T
2021-07-10 10:59:27 +03:00

11 lines
221 B
C#

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