HomePageInsertDialogModel.cs 588 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PDF_Office.Model.Dialog.HomePageToolsDialogs
  7. {
  8. internal class HomePageInsertDialogModel
  9. {
  10. public class InsertEventClass : EventArgs
  11. {
  12. public InsertType Type;
  13. public string filePath;
  14. public string pageRange;
  15. public int InsertIndex;
  16. public string Password;
  17. }
  18. public enum InsertType
  19. {
  20. BlankPages,
  21. FromOtherPdf
  22. }
  23. }
  24. }