27 lines
608 B
C#
27 lines
608 B
C#
|
|
using BotSharp.Platform.Abstraction;
|
|||
|
|
using Microsoft.Extensions.Configuration;
|
|||
|
|
using Microsoft.Extensions.Options;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace BotSharp.Core
|
|||
|
|
{
|
|||
|
|
public class PlatformSettingsBase : IPlatformSettings
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Set default settings
|
|||
|
|
/// </summary>
|
|||
|
|
public PlatformSettingsBase()
|
|||
|
|
{
|
|||
|
|
BotEngine = "BotSharpNLU";
|
|||
|
|
AgentStorage = "AgentStorageInMemory";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string BotEngine { get; set; }
|
|||
|
|
|
|||
|
|
public string AgentStorage { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|