Files
WpfExtended/WpfExtended/Configuration/ILiveUpdateableOptions.cs
T
amacocian f818f4152d Application lifetime interface (#5)
Application lifetime hooks for services
Options implementations and resolver
Options manager interface to manage options
2021-06-11 13:34:23 +02:00

8 lines
167 B
C#

namespace System.Windows.Extensions
{
public interface ILiveUpdateableOptions<T> : ILiveOptions<T>, IUpdateableOptions<T>
where T : class
{
}
}