BotSharp/BotSharp.Platform.Abstraction/IPlatformSettings.cs

14 lines
248 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; }
}
}