BotSharp/BotSharp.Platform.Abstraction/IPlatformSettings.cs
haiping008 3c7c3c183b add ContextStorageFactory
persist context to file
2018-12-07 16:57:26 -06:00

16 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Abstraction
{
public interface IPlatformSettings
{
string BotEngine { get; set; }
string AgentStorage { get; set; }
string ContextStorage { get; set; }
}
}