This commit is contained in:
Thorsten Sommer 2025-02-18 12:38:05 +01:00
parent bcb2c3c066
commit b816b090fd
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -3,12 +3,12 @@ namespace AIStudio.Settings.DataModel;
public sealed class DataAgentDataSourceSelection public sealed class DataAgentDataSourceSelection
{ {
/// <summary> /// <summary>
/// Preselect any text content cleaner options? /// Preselect any data source selection options?
/// </summary> /// </summary>
public bool PreselectAgentOptions { get; set; } public bool PreselectAgentOptions { get; set; }
/// <summary> /// <summary>
/// Preselect a text content cleaner provider? /// Preselect a data source selection provider?
/// </summary> /// </summary>
public string PreselectedAgentProvider { get; set; } = string.Empty; public string PreselectedAgentProvider { get; set; } = string.Empty;
} }