Add missing navigation parameters.

This commit is contained in:
2025-11-16 18:22:25 +00:00
parent c475d0e6a4
commit 9567153378

View File

@@ -0,0 +1,9 @@
#nullable enable
namespace Marechai.App.Presentation.Models;
public class SoundSynthDetailNavigationParameter
{
public int SoundSynthId { get; set; }
public object? NavigationSource { get; set; }
}