BotSharp/src/Infrastructure/BotSharp.Core.SideCar/Settings/SideCarSettings.cs
2024-11-04 16:44:41 -06:00

11 lines
196 B
C#

namespace BotSharp.Core.SideCar.Settings;
public class SideCarSettings
{
public BaseSetting Conversation { get; set; }
}
public class BaseSetting
{
public string Provider { get; set; }
}