BotSharp/BotSharp.Core/Abstractions/IPlatformSettings.cs

16 lines
294 B
C#
Raw Normal View History

2018-10-11 13:24:50 +00:00
using System;
using System.Collections.Generic;
using System.Text;
2019-03-17 00:55:55 +00:00
namespace BotSharp.Platform.Abstractions
2018-10-11 13:24:50 +00:00
{
public interface IPlatformSettings
{
string BotEngine { get; set; }
string AgentStorage { get; set; }
string ContextStorage { get; set; }
2018-10-11 13:24:50 +00:00
}
}