using Prism.Commands; using Prism.Mvvm; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PDF_Office.ViewModels.HomePanel.CloudDrive { public class CloudDriveContentViewModel : BindableBase { /// public DelegateCommand CheckDriveCommand { get; set; } // public DelegateCommand OpenCloudDriveCommand { get; set; } public CloudDriveContentViewModel() { // CheckDriveCommand = new DelegateCommand(CheckDrive); // OpenCloudDriveCommand = new DelegateCommand(OpenCloudDrive_Click); } } }