-
-
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.
Add new optional audit log info (#118)
- Loading branch information
1 parent
3f6c013
commit 95343cc
Showing
5 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
10 changes: 9 additions & 1 deletion
10
src/Disqord.Core/Entities/Core/AuditLogs/Member/IMemberKickedAuditLog.cs
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 |
---|---|---|
@@ -1,4 +1,12 @@ | ||
namespace Disqord.AuditLogs; | ||
|
||
public interface IMemberKickedAuditLog : ITargetedAuditLog<IUser> | ||
{ } | ||
{ | ||
/// <summary> | ||
/// Gets the type of the integration which kicked the user. | ||
/// </summary> | ||
/// <returns> | ||
/// The type of the integration or <see langword="null"/> if the user was not kicked by an integration. | ||
/// </returns> | ||
string? IntegrationType { get; } | ||
} |
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