FlorianDahn 0ceab58059 - updating namespaces in test project
- adding chat splitter to testproject to allow single chat and group chat examples at the same time
2019-11-23 02:44:05 +01:00

19 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TelegramBotBaseTest.Tests.Register.Steps
{
public class Data
{
public String EMail { get; set; }
public String Firstname { get; set; }
public String Lastname { get; set; }
}
}