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 preselected translator provider. /// public string PreselectedProvider { get; set; } = string.Empty; }