9 lines
200 B
C#

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