AI-Studio/app/MindWork AI Studio/Settings/DataModel/DataTextContentCleaner.cs

14 lines
393 B
C#
Raw Normal View History

2024-08-05 19:12:52 +00:00
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;
}