mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
feat(bot): clean up / paginate help command
This commit is contained in:
parent
f3c02a4254
commit
f0b5749d5c
5 changed files with 159 additions and 61 deletions
|
|
@ -3,7 +3,7 @@ namespace Myriad.Types;
|
|||
public record MessageComponent
|
||||
{
|
||||
public ComponentType Type { get; init; }
|
||||
public ButtonStyle? Style { get; init; }
|
||||
public ButtonStyle? Style { get; set; }
|
||||
public string? Label { get; init; }
|
||||
public Emoji? Emoji { get; init; }
|
||||
public string? CustomId { get; init; }
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ public record Message
|
|||
// public bool MentionEveryone { get; init; }
|
||||
public User.Extra[] Mentions { get; init; }
|
||||
// public ulong[] MentionRoles { get; init; }
|
||||
public MessageComponent[]? Components { get; init; }
|
||||
|
||||
public Attachment[] Attachments { get; init; }
|
||||
public Embed[]? Embeds { get; init; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue