PDFToolsList.cs 662 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PDFSettings
  7. {
  8. public class AllPDFToolsList : List<ToolItem>
  9. {
  10. }
  11. public class QuickPDFToolsList : List<ToolItem>
  12. {
  13. }
  14. public class ToolItem
  15. {
  16. public bool IsShowConciseContent { get; set; }
  17. public bool IsNewTool { get; set; }
  18. public int Id { get; set; }
  19. public int Tag { get; set; }
  20. public string TagStr { get; set; }
  21. public string Image { get; set; }
  22. public string TitleInfo { get; set; }
  23. public string Title { get; set; }
  24. }
  25. }