namespace GameServiceWarden.ModuleFramework { public interface IServiceConfigurable { string OptionName { get; } string GetValue(); bool SetValue(string value); } }