ToolItem.cs 485 B

1234567891011121314151617181920
  1. using PDF_Office.Views.HomePanel.PDFTools;
  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 ToolItem : BindableBase
  11. {
  12. public int Id { get; set; }
  13. public PDFToolType Tag { get; set; }
  14. public string Image { get; set; }
  15. public string TitleInfo { get; set; }
  16. public string Title { get; set; }
  17. }
  18. }