ExtractDialogViewModel.cs 298 B

12345678910111213141516
  1. using Prism.Commands;
  2. using Prism.Mvvm;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. namespace PDF_Master.ViewModels.Dialog
  7. {
  8. public class ExtractDialogViewModel : BindableBase
  9. {
  10. public ExtractDialogViewModel()
  11. {
  12. }
  13. }
  14. }