using Microsoft.Extensions.Options; namespace System.Configuration; public interface IUpdateableOptions : IOptions where T : class { /// /// Updates the configuration with the current value stored in . /// void UpdateOption(); }