2018-10-11 13:24:50 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Platform.Abstraction
|
|
|
|
|
|
{
|
|
|
|
|
|
public interface IPlatformSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
string BotEngine { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
string AgentStorage { get; set; }
|
2018-12-07 22:57:26 +00:00
|
|
|
|
|
|
|
|
|
|
string ContextStorage { get; set; }
|
2018-10-11 13:24:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|