Tri-Inspector/Runtime/Attributes/DeclareGroupBaseAttribute.cs
2022-01-05 14:59:05 +03:00

14 lines
269 B
C#

using System;
namespace TriInspector
{
public abstract class DeclareGroupBaseAttribute : Attribute
{
protected DeclareGroupBaseAttribute(string path)
{
Path = path ?? "None";
}
public string Path { get; }
}
}