- adding multiple classes and interfaces for Session Serialization and recovery after restart
16 lines
309 B
C#
16 lines
309 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using TelegramBotBase.Args;
|
|
using TelegramBotBase.Base;
|
|
|
|
namespace TelegramBotBase.Interfaces
|
|
{
|
|
public interface IStateMachine
|
|
{
|
|
void SaveFormStates(SaveStatesEventArgs e);
|
|
|
|
StateContainer LoadFormStates();
|
|
}
|
|
}
|