Files
com.misaki.graph-view/Runtime/Attributes/NodeInfoAttribute.cs
2024-11-02 17:58:52 +09:00

17 lines
418 B
C#

using System;
namespace Misaki.GraphView
{
[AttributeUsage(AttributeTargets.Class, Inherited = true, AllowMultiple = false)]
public class NodeInfoAttribute : System.Attribute
{
public string Name { get; }
public string Category { get; }
public NodeInfoAttribute(string name, string category)
{
Name = name;
Category = category;
}
}
}