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 { } 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 { } 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; } } }