namespace System.Configuration { public interface IOptionsManager { T GetOptions() where T : class; void UpdateOptions(T value) where T : class; } }