12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- using System;
- using System.Collections.Generic;
- using PDFSettings;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.EditTools.Bates
- {
- public class BatesCreateModel
- {
- }
- public class BatesInfo
- {
-
-
-
- public string ItemName = "";
-
-
-
- public contentItem[] TextData = new contentItem[6];
-
-
-
-
- public float[] margin = new float[4];
-
-
-
-
- public int StarPagetNumber = 1;
-
-
-
- public string Prefix = "";
-
-
-
- public string Suffix = "";
-
-
-
- public int DigitNumber = 1;
-
-
-
- public string PageRange = "0";
-
-
-
-
-
-
-
- public int PageRangeIndex = 0;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
|