Attribute type IdentAttribute that can be applied to fields and properties. It stores a single string ident passed via the attribute constructor in the Value property.
using System;
namespace WackyLib.Attributes;
[AttributeUsage( AttributeTargets.Field | AttributeTargets.Property )]
public class IdentAttribute( string ident ) : Attribute
{
public string Value { get; private set; } = ident;
}