[Feature] Incident actions message types (#2804)

This commit is contained in:
Mihail Gribkov
2023-12-04 00:06:47 +03:00
committed by GitHub
parent 49940536a7
commit 178ff58547

View File

@@ -141,6 +141,26 @@ namespace Discord
/// <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
}
}