mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-21 01:19:29 +00:00
f818f4152d
Application lifetime hooks for services Options implementations and resolver Options manager interface to manage options
15 lines
299 B
C#
15 lines
299 B
C#
namespace System.Windows.Extensions
|
|
{
|
|
public sealed class DefaultOptionsManager : IOptionsManager
|
|
{
|
|
public T GetOptions<T>() where T : class
|
|
{
|
|
return default;
|
|
}
|
|
|
|
public void UpdateOptions<T>(T value) where T : class
|
|
{
|
|
}
|
|
}
|
|
}
|