using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace BotSharp.Platform.Abstraction { public interface IContextStorage { Task Persist(string sessionId, T[] context); } }