FillAndSignContentModel.cs 595 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_Master.Model.FillAndSign
  7. {
  8. public class FillAndSignContentModel
  9. {
  10. }
  11. public class FillAndSignIsShape
  12. {
  13. public FillAndSignIsShape(int PageIndex, int AnnotIndex, string Shape)
  14. {
  15. this.PageIndex = PageIndex;
  16. this.AnnotIndex = AnnotIndex;
  17. this.Shape = Shape;
  18. }
  19. public int PageIndex;
  20. public int AnnotIndex;
  21. public string Shape;
  22. }
  23. }