1234567891011121314151617181920212223242526272829303132333435363738 |
- 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; }
- }
- public class PreinstallFontList : List<PreinstallItem>
- {
- }
- public class PreinstallItem
- {
- public string mTag { get; set; }
- public string mTagContent { get; set; }
- public int mFontSize { get; set; }
- public string mFontFamily { get; set; }
- public string mFontStyle { get; set; }
- public string mFontWeight { get; set; }
- }
- }
|