HomeToolsContentViewModel.cs 317 B

123456789101112131415161718
  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_Master.ViewModels.HomePanel
  8. {
  9. public class HomeToolsContentViewModel:BindableBase
  10. {
  11. public HomeToolsContentViewModel()
  12. {
  13. }
  14. }
  15. }