PresetFontList.cs 597 B

123456789101112131415161718192021222324252627
  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;
  7. using System.Windows.Media;
  8. namespace PDFSettings
  9. {
  10. public class PresetFontList : List<PresetFontItem>
  11. {
  12. }
  13. public class PresetFontItem
  14. {
  15. public string mTag { get; set; }
  16. public string mTagContent { get; set; }
  17. public int mFontSize { get; set; }
  18. public FontFamily mFontFamily { get; set; }
  19. public FontStyle mFontStyle { get; set; }
  20. public FontWeight mFontWeight { get; set; }
  21. }
  22. }