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