mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-12 08:40:11 +00:00
feat: respect guild boost file size limit when re-sending attachments
This commit is contained in:
parent
b1bd563dad
commit
38cbca1b34
4 changed files with 29 additions and 2 deletions
|
|
@ -1,5 +1,13 @@
|
|||
namespace Myriad.Types
|
||||
{
|
||||
public enum PremiumTier
|
||||
{
|
||||
NONE,
|
||||
TIER_1,
|
||||
TIER_2,
|
||||
TIER_3,
|
||||
}
|
||||
|
||||
public record Guild
|
||||
{
|
||||
public ulong Id { get; init; }
|
||||
|
|
@ -15,6 +23,7 @@ namespace Myriad.Types
|
|||
public bool? WidgetEnabled { get; init; }
|
||||
public ulong? WidgetChannelId { get; init; }
|
||||
public int VerificationLevel { get; init; }
|
||||
public PremiumTier PremiumTier { get; init; }
|
||||
|
||||
public Role[] Roles { get; init; }
|
||||
public string[] Features { get; init; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue