Files
2022-11-01 15:26:08 +00:00

17 lines
459 B
C#

using System.Windows;
namespace TheXamlGuy.Framework.WPF
{
public class NavigationParameter : DependencyObject
{
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register(nameof(Value),
typeof(object), typeof(NavigationParameter));
public object Value
{
get => GetValue(ValueProperty);
set => SetValue(ValueProperty, value);
}
}
}