Files
nadekobot/src/NadekoBot/Common/Interaction/NadekoInteractionData.cs

8 lines
308 B
C#

namespace NadekoBot;
/// <summary>
/// Represents essential interacation data
/// </summary>
/// <param name="Emote">Emote which will show on a button</param>
/// <param name="CustomId">Custom interaction id</param>
public record NadekoInteractionData(IEmote Emote, string CustomId, string? Text = null);