14 lines
270 B
C#
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();
|
|
} |