public void UpdateModel(AdditionalApplicationModel model)
 {
     Ensure.NotNull(model, "model");
     Icon  = IconExtractor.Get(model.Path);
     Path  = model.Path;
     Model = model;
     RaisePropertyChanged(nameof(Name));
 }