Code/Attributes/IdentAttribute.cs
using System;
namespace WackyLib.Attributes;
[AttributeUsage( AttributeTargets.Field | AttributeTargets.Property )]
public class IdentAttribute( string ident ) : Attribute
{
public string Value { get; private set; } = ident;
}