// Token: 0x06000218 RID: 536 RVA: 0x0000A638 File Offset: 0x00008838
 public ImportViewModel(INavigation navigation, IUserInterface userInterface, WindowOperationsViewModel windowOperationsVM) : base(navigation, userInterface)
 {
     this.WindowOperationsVM  = windowOperationsVM;
     this.NavigationViewModel = new NavigationViewModel(base.Navigation, "Import");
     this.GoToSettingsCommand = new Command(new Action(this.GoToSettings), () => this.VideoSource != null);
     this.GoBackCommand       = new AsyncCommand(new Func <Task>(this.GoBack));
 }
 // Token: 0x060001A9 RID: 425 RVA: 0x00007A69 File Offset: 0x00005C69
 public MainWindowViewModel(INavigation navigation, IUserInterface userInterface, WindowOperationsViewModel windowVM, ScratchManager scratchManager, FirstRunExperience firstRun, ActivationManager activationManager) : base(navigation, userInterface)
 {
     this.WindowOperationsViewModel = windowVM;
     this.scratchManager            = scratchManager;
     this.firstRun          = firstRun;
     this.activationManager = activationManager;
 }