- switching german to english - some bug fixes in device sessions and improvements - adding xml documentation
30 lines
540 B
C#
30 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TelegramBotBase.Form;
|
|
|
|
namespace TelegramBotBase.Base
|
|
{
|
|
/// <summary>
|
|
/// Button get clicked event
|
|
/// </summary>
|
|
public class ButtonClickedEventArgs : EventArgs
|
|
{
|
|
public ButtonBase Button { get; set; }
|
|
|
|
|
|
public ButtonClickedEventArgs()
|
|
{
|
|
|
|
}
|
|
|
|
public ButtonClickedEventArgs(ButtonBase button)
|
|
{
|
|
this.Button = button;
|
|
}
|
|
|
|
}
|
|
}
|