123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDFSettings
- {
- public class AllPDFToolsList : List<ToolItem>
- {
- }
- public class QuickPDFToolsList : List<ToolItem>
- {
- }
- public class ToolItem
- {
- public bool IsShowConciseContent { get; set; }
- public bool IsNewTool { get; set; }
- public int Id { get; set; }
- public int Tag { get; set; }
- public string TagStr { get; set; }
- public string Image { get; set; }
- public string TitleInfo { get; set; }
- public string Title { get; set; }
- }
- }
|