File: MetricParameter.cs
Project: ..\..\..\src\Generators\Microsoft.Gen.MetadataExtractor\Microsoft.Gen.MetadataExtractor.csproj (Microsoft.Gen.MetadataExtractor)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.Gen.Metrics.Model;
 
internal sealed class MetricParameter
{
    public string Name = string.Empty;
    public string Type = string.Empty;
    public bool IsMeter;
}