2022-10-08 19:15:51 +03:00

10 lines
155 B
C#

using TelegramBotBase.Form;
namespace TelegramBotBase.Interfaces
{
public interface IStartFormFactory
{
FormBase CreateForm();
}
}