Files
marechai/Marechai.App/Presentation/Models/SoundSynthDetailNavigationParameter.cs

10 lines
216 B
C#
Raw Normal View History

2025-11-16 18:22:25 +00:00
#nullable enable
namespace Marechai.App.Presentation.Models;
public class SoundSynthDetailNavigationParameter
{
public int SoundSynthId { get; set; }
public object? NavigationSource { get; set; }
}