using AIStudio.Provider;
namespace AIStudio.Settings.DataModel;
public class DataLegalCheck
{
///
/// Do you want to preselect any legal check options?
///
public bool PreselectOptions { get; set; }
///
/// Hide the web content reader?
///
public bool HideWebContentReader { get; set; }
///
/// Preselect the web content reader?
///
public bool PreselectWebContentReader { get; set; }
///
/// Preselect the content cleaner agent?
///
public bool PreselectContentCleanerAgent { get; set; }
///
/// The minimum confidence level required for a provider to be considered.
///
public ConfidenceLevel MinimumProviderConfidence { get; set; } = ConfidenceLevel.NONE;
///
/// The preselected translator provider.
///
public string PreselectedProvider { get; set; } = string.Empty;
///
/// Preselect a profile?
///
public string PreselectedProfile { get; set; } = string.Empty;
}