12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- namespace PDF_Office.Model.PageEdit
- {
- public class PageEditHistory
- {
-
-
-
- public ActionType Type { get; set; }
-
-
-
- public Dictionary<int, int> SourceTargetValue { get; set; }
-
-
-
- public int InsertIndex { get; set; }
-
-
-
- public string InsertFilePath { get; set; }
-
-
-
- public string InsertFilePassWord { get; set; }
-
-
-
- public int InsertPageCount { get; set; }
-
-
-
- public Size PageSize { get; set; }
- }
-
-
-
- public enum ActionType
- {
-
-
-
- RightRotate,
-
-
-
- LeftRotate,
-
-
-
- InsertFromFile,
-
-
-
- InsertCustomPages,
-
-
-
- DragSort,
-
-
-
- Reverse
- }
- }
|