Show an error when entering the same value from the settings (#326)
Closes #324
This commit is contained in:
parent
07e8784d2e
commit
d6d2660fb0
9 changed files with 67 additions and 4 deletions
|
@ -7,6 +7,7 @@ public interface IGuildOption
|
|||
{
|
||||
string Name { get; }
|
||||
string Display(JsonNode settings);
|
||||
Result<bool> ValueEquals(JsonNode settings, string value);
|
||||
Result Set(JsonNode settings, string from);
|
||||
Result Reset(JsonNode settings);
|
||||
}
|
||||
|
|
Reference in a new issue