- adding multiple classes and interfaces for Session Serialization and recovery after restart
21 lines
399 B
C#
21 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using TelegramBotBase.Base;
|
|
using TelegramBotBase.Sessions;
|
|
|
|
namespace TelegramBotBase.Args
|
|
{
|
|
public class SaveStatesEventArgs
|
|
{
|
|
public StateContainer States { get; set; }
|
|
|
|
|
|
public SaveStatesEventArgs(StateContainer states)
|
|
{
|
|
this.States = states;
|
|
}
|
|
}
|
|
}
|