FlorianDahn aa53dc9386 - adding a lot of english translations
- switching german to english
- some bug fixes in device sessions and improvements
- adding xml documentation
2019-02-22 16:35:35 +01:00

31 lines
542 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelegramBotBase.Form
{
/// <summary>
/// Base class for button handling
/// </summary>
public class ButtonBase
{
public String Text { get; set; }
public String Value { get; set; }
public ButtonBase()
{
}
public ButtonBase(String Text, String Value)
{
this.Text = Text;
this.Value = Value;
}
}
}