mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-16 06:29:29 +00:00
10 lines
173 B
C#
10 lines
173 B
C#
using Microsoft.Extensions.Options;
|
|
|
|
namespace System.Extensions.Configuration
|
|
{
|
|
public interface ILiveOptions<T> : IOptions<T>
|
|
where T : class
|
|
{
|
|
}
|
|
}
|