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

10 lines
216 B
C#

#nullable enable
namespace Marechai.App.Presentation.Models;
public class SoundSynthDetailNavigationParameter
{
public int SoundSynthId { get; set; }
public object? NavigationSource { get; set; }
}