mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-21 16:28:30 +00:00
24 lines
672 B
C#
24 lines
672 B
C#
using Discord;
|
|
|
|
namespace BiblioTech.Options
|
|
{
|
|
public class StringOption : CommandOption
|
|
{
|
|
public StringOption(string name, string description, bool isRequired)
|
|
: base(name, description, type: ApplicationCommandOptionType.String, isRequired)
|
|
{
|
|
}
|
|
|
|
public async Task<string?> Parse(CommandContext context)
|
|
{
|
|
var strData = context.Options.SingleOrDefault(o => o.Name == Name);
|
|
if (strData == null)
|
|
{
|
|
await context.Followup("String option not received.");
|
|
return null;
|
|
}
|
|
return strData.Value as string;
|
|
}
|
|
}
|
|
}
|