Files
SystemExtensions/SystemExtensions.NetStandard.DependencyInjection/Configuration/ILiveOptions.cs
T
amacocian e6a06915cd Improve IHttpClient factories (#20)
Codestyle fixes
Setup CODEOWNERS
Setup dependabot
2022-09-06 15:49:07 +02:00

9 lines
144 B
C#

using Microsoft.Extensions.Options;
namespace System.Configuration;
public interface ILiveOptions<T> : IOptions<T>
where T : class
{
}