MetersAttribute.cs

An attribute type named MetersAttribute in the Metrify namespace. It can be applied to properties or fields and has no behavior or data.

using System;

namespace Metrify;

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