mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-15 14:19:29 +00:00
e6a06915cd
Codestyle fixes Setup CODEOWNERS Setup dependabot
9 lines
144 B
C#
9 lines
144 B
C#
using Microsoft.Extensions.Options;
|
|
|
|
namespace System.Configuration;
|
|
|
|
public interface ILiveOptions<T> : IOptions<T>
|
|
where T : class
|
|
{
|
|
}
|