Files
Toolkit2/Toolkit.Foundation/NavigationTargetAttribute.cs
T
TheXamlGuy 51bb7d4943 Old ns
2024-04-13 15:46:02 +01:00

9 lines
221 B
C#

namespace Toolkit.Foundation;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
public class NavigationTargetAttribute(string name) :
Attribute
{
public string Name => name;
}