2023-12-25 01:27:48 -05:00

8 lines
193 B
C#

namespace AssetRipper.Tests.Traversal;
[AttributeUsage(AttributeTargets.Field)]
internal sealed class EditorFieldAttribute(string name) : Attribute
{
public string Name { get; } = name;
}