feat: support POLL_RESULT (46) in MessageType enum (#3131)

* feat: support POLL_RESULT (46) in MessageType enum

* oops
This commit is contained in:
jiraya
2025-06-05 22:53:08 +03:00
committed by GitHub
parent 35d94ca32b
commit dc3bd768a5

View File

@@ -166,6 +166,11 @@ namespace Discord
/// <summary>
/// The message is a purchase notification.
/// </summary>
PurchaseNotification = 44
PurchaseNotification = 44,
/// <summary>
/// The message indicating the result of a poll.
/// </summary>
PollResult = 46,
}
}