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