Files
Toolkit2/Toolkit.Foundation/NavigationContextAttribute.cs
T
2024-04-13 11:29:32 +01:00

13 lines
290 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; }
}