File: Model\MetricParameter.cs
Web Access
Project: src\src\Generators\Microsoft.Gen.Metrics\Microsoft.Gen.Metrics.csproj (Microsoft.Gen.Metrics)
// 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;
}