namespace TinaX.Options { public interface IOptions { object OptionValue { get; } } public interface IOptions where TOption : class { TOption Value { get; } } }