using System.Text.Json.Serialization;
namespace Geekbot.Core.Interactions.ApplicationCommand
{
///
public record OptionChoiceString : OptionChoice
{
///
/// value of the choice, up to 100 characters if string
///
[JsonPropertyName("value")]
public string Value { get; set; }
}
}