This commit is contained in:
EugeneTes
2026-03-19 09:03:37 +01:00
parent 14fe822962
commit 83597b8763
55 changed files with 2136 additions and 32 deletions

View File

@@ -4,6 +4,6 @@ namespace VisionBuilder.UI.Common.ViewModel.Interfaces.UI;
public interface IImagePreviewService
{
void ShowImagePreview(ErrorPreviewVM errorPreviewVm);
Task ShowImagePreviewAsync(ErrorPreviewVM errorPreviewVm);
}

View File

@@ -2,5 +2,5 @@
public interface IRecipeSelectionDialogService
{
bool SelectRecipe(RecipeSelectionVM recipeSelectionVm);
Task<bool> SelectRecipeAsync(RecipeSelectionVM recipeSelectionVm);
}

View File

@@ -2,5 +2,5 @@
public interface ISettingsService
{
void ShowSettingsDialog();
Task ShowSettingsDialogAsync();
}