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

16 lines
297 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();
}
}