BotSharp/src/Infrastructure/BotSharp.Abstraction/Interpreters/Settings/InterpreterSettings.cs
2024-08-23 10:15:58 -05:00

12 lines
234 B
C#

namespace BotSharp.Abstraction.Interpreters.Settings;
public class InterpreterSettings
{
public PythonInterpreterSetting Python { get; set; }
}
public class PythonInterpreterSetting
{
public string PythonDLL { get; set; }
}