Victor bab69b593e Migrate start form creation from generics to a factory method pattern
Add SimpleStartFormFactory.cs that encloses old behavior
2021-10-11 14:23:27 +03:00

9 lines
154 B
C#

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