1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-04-20 00:43:36 +03:00
Octobot/src/Data/Options/IOption.cs
Macintosh II 7e71893fe0
Resolving issues...
Signed-off-by: Macintosh II <mctaylxrs@outlook.com>
2023-09-22 19:59:23 +03:00

12 lines
266 B
C#

using System.Text.Json.Nodes;
using Remora.Results;
namespace Boyfriend.Data.Options;
public interface IOption
{
string Name { get; }
string Display(JsonNode settings);
Result Set(JsonNode settings, string from);
Result Reset(JsonNode settings);
}