mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-24 17:24:56 +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
11 lines
253 B
C#
11 lines
253 B
C#
using System.Diagnostics.Metrics;
|
|
|
|
namespace Daybreak.Shared.Models.Metrics;
|
|
|
|
public readonly struct Metric
|
|
{
|
|
public DateTime Timestamp { get; init; }
|
|
public Instrument Instrument { get; init; }
|
|
public object Measurement { get; init; }
|
|
}
|