15 lines
394 B
C#
15 lines
394 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Toolkit.Foundation.Avalonia
|
|
{
|
|
public record ContentControlNavigation : Navigation<ContentControl>
|
|
{
|
|
public ContentControlNavigation(ContentControl route,
|
|
object? content,
|
|
object? template,
|
|
IDictionary<string, object>? parameters) : base(route, content, template, parameters)
|
|
{
|
|
}
|
|
}
|
|
}
|