mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 08:18:49 -05:00
14 lines
269 B
C#
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; }
|
|
}
|
|
} |