mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 14:00:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			914 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			914 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;
 | 
						|
    
 | 
						|
    /// <summary>
 | 
						|
    /// Preselect a profile?
 | 
						|
    /// </summary>
 | 
						|
    public string PreselectedProfile { get; set; } = string.Empty;
 | 
						|
} |