SignatureList.cs 613 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows.Media;
  7. namespace PDFSettings
  8. {
  9. public enum SignatureType
  10. {
  11. TextType,
  12. Drawing,
  13. ImageType
  14. }
  15. public class SignatureList:List<SignatureItem>
  16. {
  17. }
  18. public class SignatureItem
  19. {
  20. public string SourcePath { get; set; }
  21. public string DrawingPath { get; set; }
  22. public SignatureType Type { get; set; }
  23. public double inkThickness { get; set; }
  24. public Color inkColor { get; set; }
  25. }
  26. }