mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
10 lines
216 B
C#
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; }
|
|
}
|