using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Office.Model.MainPageToolsDialogs { internal class MainPageInsertDialogModel { public class InsertEventClass : EventArgs { public InsertType Type; public string filePath; public string pageRange; public int InsertIndex; public string Password; } public enum InsertType { BlankPages, FromOtherPdf } } }