2022-10-08 19:26:34 +03:00

14 lines
270 B
C#

using System;
using TelegramBotBase.Args;
using TelegramBotBase.Base;
namespace TelegramBotBase.Interfaces;
public interface IStateMachine
{
Type FallbackStateForm { get; }
void SaveFormStates(SaveStatesEventArgs e);
StateContainer LoadFormStates();
}