2021-04-22 16:03:09 -05:00
|
|
|
namespace GameServiceWarden.ModuleFramework
|
2020-12-24 16:33:17 -06:00
|
|
|
{
|
2021-04-08 21:36:08 -05:00
|
|
|
public interface IServiceConfigurable
|
2020-12-24 16:33:17 -06:00
|
|
|
{
|
|
|
|
string OptionName { get; }
|
|
|
|
string GetValue();
|
2021-04-08 21:36:08 -05:00
|
|
|
bool SetValue(string value);
|
2020-12-24 16:33:17 -06:00
|
|
|
}
|
|
|
|
}
|