Adding DebuggerDisplay attribute

This commit is contained in:
FlorianDahn 2021-02-27 15:18:23 +01:00
parent 63deb978a4
commit 426bb078af

View File

@ -1,5 +1,6 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
@ -7,6 +8,7 @@ using Telegram.Bot.Types.ReplyMarkups;
namespace TelegramBotBase.Form namespace TelegramBotBase.Form
{ {
[DebuggerDisplay("{Text}, {Value}")]
/// <summary> /// <summary>
/// Base class for button handling /// Base class for button handling
/// </summary> /// </summary>