12 lines
289 B
C#
12 lines
289 B
C#
namespace Toolkit.Foundation;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
|
|
public class NavigationContextAttribute : Attribute
|
|
{
|
|
public NavigationContextAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; }
|
|
} |