From d12cb86c0fe4e16a1e99db44608b9bf4b720201c Mon Sep 17 00:00:00 2001 From: Ivan M <33786293+ivanmem@users.noreply.github.com> Date: Fri, 17 Jan 2025 16:16:24 +0300 Subject: [PATCH] Update KeyboardButtonActionType.cs (#1628) 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, +}