1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Master.Model.FillAndSign
- {
- public class FillAndSignContentModel
- {
- }
- public class FillAndSignIsShape
- {
- public FillAndSignIsShape(int PageIndex, int AnnotIndex, string Shape)
- {
- this.PageIndex = PageIndex;
- this.AnnotIndex = AnnotIndex;
- this.Shape = Shape;
- }
- public int PageIndex;
- public int AnnotIndex;
- public string Shape;
- }
- }
|