Browse Source

Add incomplete xmldoc to UserFlag enum

pull/1237/head
Chris Johnston 6 years ago
parent
commit
ee499bafb3
1 changed files with 15 additions and 0 deletions
  1. +15
    -0
      src/Discord.Net.Core/Entities/Users/UserFlag.cs

+ 15
- 0
src/Discord.Net.Core/Entities/Users/UserFlag.cs View File

@@ -18,10 +18,25 @@ namespace Discord
/// </summary>
Partner = 0b10,
HypeSquadEvents = 0b100,
/// <summary>
/// Flag given to users who have participated in the bug report program.
/// </summary>
BugHunter = 0b1000,
/// <summary>
/// Flag given to users who are in the HypeSquad House of Bravery.
/// </summary>
HypeSquadBravery = 0b100_0000,
/// <summary>
/// Flag given to users who are in the HypeSquad House of Brilliance.
/// </summary>
HypeSquadBrilliance = 0b1000_0000,
/// <summary>
/// Flag given to users who are in the HypeSquad House of Balance.
/// </summary>
HypeSquadBalance = 0b1_0000_0000,
/// <summary>
/// Flag given to users who subscribed to Nitro before games were added.
/// </summary>
EarlySupporter = 0b10_0000_0000,
}
}

Loading…
Cancel
Save