CloudDriveContentViewModel.cs 686 B

1234567891011121314151617181920212223242526272829303132
  1. using Prism.Commands;
  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.ViewModels.HomePanel.CloudDrive
  9. {
  10. public class CloudDriveContentViewModel : BindableBase
  11. {
  12. /// public DelegateCommand CheckDriveCommand { get; set; }
  13. // public DelegateCommand OpenCloudDriveCommand { get; set; }
  14. public CloudDriveContentViewModel()
  15. {
  16. // CheckDriveCommand = new DelegateCommand(CheckDrive);
  17. // OpenCloudDriveCommand = new DelegateCommand(OpenCloudDrive_Click);
  18. }
  19. }
  20. }