2018-05-19 23:23:01 +02:00

28 lines
466 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelegramBotBase.Form
{
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;
}
}
}