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