-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
893cc7a
commit cbb8b2c
Showing
4 changed files
with
34 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace Disqord; | ||
|
||
/// <summary> | ||
/// Represents the type of an invite. | ||
/// </summary> | ||
public enum InviteType | ||
{ | ||
/// <summary> | ||
/// An invitation to a guild. | ||
/// </summary> | ||
Guild = 0, | ||
|
||
/// <summary> | ||
/// An invitation to a group private channel. | ||
/// </summary> | ||
Group = 1, | ||
|
||
/// <summary> | ||
/// An invitation to add the inviter as a friend. | ||
/// </summary> | ||
Friend = 2 | ||
} |
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