geekbot/src/Web/Controllers/Interactions/Model/InteractionOption.cs

12 lines
No EOL
353 B
C#

using System.Collections.Generic;
namespace Geekbot.Web.Controllers.Interactions.Model
{
public record InteractionOption
{
public string Name { get; set; }
public ApplicationCommandOption Type { get; set; }
public string Value { get; set; }
public List<InteractionOption> Options { get; set; }
}
}