mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 19:49:06 +00:00
14 lines
393 B
C#
14 lines
393 B
C#
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public sealed class DataTextContentCleaner
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Preselect any text content cleaner options?
|
||
|
/// </summary>
|
||
|
public bool PreselectAgentOptions { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect a text content cleaner provider?
|
||
|
/// </summary>
|
||
|
public string PreselectedAgentProvider { get; set; } = string.Empty;
|
||
|
}
|