mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-19 16:33:36 +03:00
12 lines
278 B
C#
12 lines
278 B
C#
using System.Text.Json.Nodes;
|
|
using Remora.Results;
|
|
|
|
namespace TeamOctolings.Octobot.Data.Options;
|
|
|
|
public interface IOption
|
|
{
|
|
string Name { get; }
|
|
string Display(JsonNode settings);
|
|
Result Set(JsonNode settings, string from);
|
|
Result Reset(JsonNode settings);
|
|
}
|