Files
2021-07-10 11:24:37 +03:00

8 lines
162 B
C#

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