BotSharp/BotSharp.Platform.Abstraction/IPlatformSettings.cs

16 lines
293 B
C#
Raw Normal View History

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; }
string ContextStorage { get; set; }
2018-10-11 13:24:50 +00:00
}
}