ToolItem.cs 782 B

123456789101112131415161718192021222324252627282930
  1. using PDF_Office.Helper;
  2. using Prism.Mvvm;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PDF_Office.Model.PDFTool
  9. {
  10. public class ToolItem1 : BindableBase
  11. {
  12. private bool _isShowConciseContent = false;
  13. public bool IsShowConciseContent
  14. {
  15. get { return _isShowConciseContent; }
  16. set
  17. {
  18. SetProperty(ref _isShowConciseContent, value);
  19. }
  20. }
  21. public bool IsNewTool { get; set; }
  22. public int Id { get; set; }
  23. public PDFToolType Tag { get; set; }
  24. public string Image { get; set; }
  25. public string TitleInfo { get; set; }
  26. public string Title { get; set; }
  27. }
  28. }