HomeToolsContentViewModel.cs 591 B

1234567891011121314151617181920212223242526272829
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace PDF_Office.ViewModels.HomePanel
  8. {
  9. public class HomeToolsContentViewModel:BindableBase
  10. {
  11. public HomeToolsContentViewModel()
  12. {
  13. }
  14. }
  15. public class QuickToolItem : BindableBase
  16. {
  17. public int Id { get; set; }
  18. public string Image { get; set; }
  19. public string NameInfo { get; set; }
  20. public string Name { get; set; }
  21. public QuickToolItem()
  22. {
  23. }
  24. }
  25. }