BotSharp/BotSharp.Platform.Abstraction/IPlatformSettings.cs
2018-10-11 08:24:50 -05:00

14 lines
248 B
C#

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