BotSharp/BotSharp.Core/Abstractions/IPlatformSettings.cs
2019-03-16 19:55:55 -05:00

16 lines
294 B
C#

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