mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-23 08:45:06 +00:00
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
13 lines
280 B
C#
13 lines
280 B
C#
using System.Diagnostics.Metrics;
|
|
|
|
namespace Daybreak.Shared.Models.Metrics;
|
|
|
|
public sealed class MetricSet
|
|
{
|
|
public AggregationTypes AggregationType { get; init; }
|
|
|
|
public Instrument? Instrument { get; init; }
|
|
|
|
public IEnumerable<Metric>? Metrics { get; init; }
|
|
}
|