mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
11 lines
233 B
C#
11 lines
233 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);
|
||
|
}
|