From 956715337864918c5b661d2207c5ff6b36ede79a Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sun, 16 Nov 2025 18:22:25 +0000 Subject: [PATCH] Add missing navigation parameters. --- .../Models/SoundSynthDetailNavigationParameter.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Marechai.App/Presentation/Models/SoundSynthDetailNavigationParameter.cs diff --git a/Marechai.App/Presentation/Models/SoundSynthDetailNavigationParameter.cs b/Marechai.App/Presentation/Models/SoundSynthDetailNavigationParameter.cs new file mode 100644 index 00000000..1dc179ff --- /dev/null +++ b/Marechai.App/Presentation/Models/SoundSynthDetailNavigationParameter.cs @@ -0,0 +1,9 @@ +#nullable enable + +namespace Marechai.App.Presentation.Models; + +public class SoundSynthDetailNavigationParameter +{ + public int SoundSynthId { get; set; } + public object? NavigationSource { get; set; } +}