Skip to content

Commit

Permalink
[Feature] Incident actions message types (#2804)
Browse files Browse the repository at this point in the history
  • Loading branch information
Misha-133 authored Dec 3, 2023
1 parent 4994053 commit 178ff58
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion src/Discord.Net.Core/Entities/Messages/MessageType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,26 @@ public enum MessageType
/// <summary>
/// The message for a guild application premium subscription.
/// </summary>
GuildApplicationPremiumSubscription = 32
GuildApplicationPremiumSubscription = 32,

/// <summary>
/// The message for incident alert mode enabled.
/// </summary>
IncidentAlertModeEnabled = 36,

/// <summary>
/// The message for incident alert mode disabled.
/// </summary>
IncidentAlertModeDisabled = 37,

/// <summary>
/// The message for incident report raid.
/// </summary>
IncidentReportRaid = 38,

/// <summary>
/// The message for incident report false alarm.
/// </summary>
IncidentReportFalseAlarm = 39
}
}

0 comments on commit 178ff58

Please sign in to comment.