mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 22:29:28 +00:00
11 lines
210 B
C#
11 lines
210 B
C#
namespace System.Configuration
|
|
{
|
|
public interface IOptionsManager
|
|
{
|
|
T GetOptions<T>()
|
|
where T : class;
|
|
void UpdateOptions<T>(T value)
|
|
where T : class;
|
|
}
|
|
}
|