feat: respect guild boost file size limit when re-sending attachments

This commit is contained in:
spiral
2021-11-04 14:13:43 -04:00
parent b1bd563dad
commit 38cbca1b34
4 changed files with 29 additions and 2 deletions

View File

@@ -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; }