12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDFSettings
- {
-
-
-
- public class AllPDFToolsList : List<CacheToolItem>
- {
- }
-
-
-
- public class QuickPDFToolsList : List<CacheToolItem>
- {
- }
- public class CacheToolItem
- {
- #region 重要属性
-
-
-
- public bool IsNewTool { get; set; }
-
-
-
-
- public int ToolLayOutType { get; set; }
-
-
-
- public int ToolTypeId { get; set; }
-
-
-
- public string ToolTypeStr { get; set; }
-
-
-
-
- public string FnTypeStr { get; set; }
- #endregion
- }
- }
|