mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-24 03:56:28 +00:00
f818f4152d
Application lifetime hooks for services Options implementations and resolver Options manager interface to manage options
8 lines
167 B
C#
8 lines
167 B
C#
namespace System.Windows.Extensions
|
|
{
|
|
public interface ILiveUpdateableOptions<T> : ILiveOptions<T>, IUpdateableOptions<T>
|
|
where T : class
|
|
{
|
|
}
|
|
}
|