13 lines
355 B
C#
13 lines
355 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)
|
|
{
|
|
}
|
|
} |