From 5efb9f8a85420f2d08d0e93ce0e7a1bf60c7104a Mon Sep 17 00:00:00 2001 From: Ivan M <33786293+ivanmem@users.noreply.github.com> Date: Fri, 17 Jan 2025 15:54:37 +0300 Subject: [PATCH] Update KeyboardButtonActionType.cs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit В client_info.button_actions начал приходить новый тип кнопки сообщений. --- VkNet/Enums/StringEnums/KeyboardButtonActionType.cs | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/VkNet/Enums/StringEnums/KeyboardButtonActionType.cs b/VkNet/Enums/StringEnums/KeyboardButtonActionType.cs index 537fe1178..58d6395e0 100644 --- a/VkNet/Enums/StringEnums/KeyboardButtonActionType.cs +++ b/VkNet/Enums/StringEnums/KeyboardButtonActionType.cs @@ -55,5 +55,10 @@ public enum KeyboardButtonActionType /// /// Подписаться /// - IntentSubscribe -} \ No newline at end of file + IntentSubscribe, + + /// + /// Открыть модальный вид + /// + OpenModalView, +}