15 lines
339 B
C#
15 lines
339 B
C#
using System;
|
|
|
|
namespace Misaki.GraphView
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field, Inherited = true, AllowMultiple = false)]
|
|
public class NodeOutputAttribute : System.Attribute
|
|
{
|
|
public string Name { get; }
|
|
|
|
public NodeOutputAttribute(string name = null)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
} |