forked from DSharpPlus/DSharpPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fields for nitro boosts... \n(why not expose who's nitro haha dis…
…cord amirite >:0 )
- Loading branch information
Showing
6 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,33 @@ | ||
namespace DSharpPlus | ||
{ | ||
/// <summary> | ||
/// Represents a server's premium tier. | ||
/// </summary> | ||
public enum PremiumTier : int | ||
{ | ||
/// <summary> | ||
/// Indicates that this server was not boosted. | ||
/// </summary> | ||
None = 0, | ||
|
||
/// <summary> | ||
/// Indicates that this server was boosted two times. | ||
/// </summary> | ||
Tier_1 = 1, | ||
|
||
/// <summary> | ||
/// Indicates that this server was boosted ten times. | ||
/// </summary> | ||
Tier_2 = 2, | ||
|
||
/// <summary> | ||
/// Indicates that this server was boosted fifty times. | ||
/// </summary> | ||
Tier_3 = 3, | ||
|
||
/// <summary> | ||
/// Indicates an unknown premium tier. | ||
/// </summary> | ||
Unknown = int.MaxValue | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters