mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 11:49:07 +00:00
29 lines
776 B
C#
29 lines
776 B
C#
|
namespace AIStudio.Settings.DataModel;
|
||
|
|
||
|
public class DataLegalCheck
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Do you want to preselect any legal check options?
|
||
|
/// </summary>
|
||
|
public bool PreselectOptions { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Hide the web content reader?
|
||
|
/// </summary>
|
||
|
public bool HideWebContentReader { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect the web content reader?
|
||
|
/// </summary>
|
||
|
public bool PreselectWebContentReader { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// Preselect the content cleaner agent?
|
||
|
/// </summary>
|
||
|
public bool PreselectContentCleanerAgent { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// The preselected translator provider.
|
||
|
/// </summary>
|
||
|
public string PreselectedProvider { get; set; } = string.Empty;
|
||
|
}
|