mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 22:49:07 +00:00
14 lines
401 B
C#
14 lines
401 B
C#
namespace AIStudio.Settings.DataModel;
|
|
|
|
public sealed class DataAgentDataSourceSelection
|
|
{
|
|
/// <summary>
|
|
/// Preselect any data source selection options?
|
|
/// </summary>
|
|
public bool PreselectAgentOptions { get; set; }
|
|
|
|
/// <summary>
|
|
/// Preselect a data source selection provider?
|
|
/// </summary>
|
|
public string PreselectedAgentProvider { get; set; } = string.Empty;
|
|
} |