This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
gameservicewarden/tests/GameServiceWarden.Core.Tests/Modules/FakeServiceConfigurable.cs

26 lines
575 B
C#
Raw Normal View History

2021-04-22 21:03:09 +00:00
using GameServiceWarden.ModuleFramework;
namespace GameServiceWarden.Core.Tests.Modules
{
public class FakeServiceConfigurable : IServiceConfigurable
{
private string value;
public string OptionName { get; private set; }
public FakeServiceConfigurable(string optionName)
{
this.OptionName = optionName;
}
public string GetValue()
{
return value;
}
public bool SetValue(string value)
{
this.value = value;
return true;
}
}
}