Code/MetersAttribute.cs

Attribute type named MetersAttribute in namespace Metrify. It marks properties or fields, likely to tag numeric values as meters for tooling or serialization.

using System;

namespace Metrify;

[AttributeUsage( AttributeTargets.Property | AttributeTargets.Field )]
public class MetersAttribute : Attribute
{
}