mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
8 lines
308 B
C#
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); |