123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Media;
- namespace PDFSettings
- {
- public class PresetFontList : List<PresetFontItem>
- {
- }
- public class PresetFontItem
- {
- public string mTag { get; set; }
- public string mTagContent { get; set; }
- public int mFontSize { get; set; }
- public FontFamily mFontFamily { get; set; }
- public FontStyle mFontStyle { get; set; }
- public FontWeight mFontWeight { get; set; }
- }
- }
|