using ComPDFKit_Conversion.Options; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Master.Model.Dialog.ConverterDialogs { public class ConverterTextDialogModel : ConverterDialogsModel { public CPDFConvertTxtOptions txtOptions = new CPDFConvertTxtOptions(); public CPDFConvertTxtOptions TxtOptions() { txtOptions.OCRLanguage = Options.OCRLanguage; txtOptions.IsAllowOCR = Options.IsAllowOCR; return txtOptions; } } }