10 lines
155 B
C#
10 lines
155 B
C#
using TelegramBotBase.Form;
|
|
|
|
namespace TelegramBotBase.Interfaces
|
|
{
|
|
public interface IStartFormFactory
|
|
{
|
|
FormBase CreateForm();
|
|
}
|
|
}
|