Skip to content

Commit

Permalink
fix #332 - only require fields used (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 authored Feb 27, 2024
1 parent 1f94855 commit 5053742
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

public record ClearMLMetricsEvent
{
public required string Metric { get; init; }
public required string Variant { get; init; }
public string? Metric { get; init; }
public string? Variant { get; init; }
public required double Value { get; init; }
public required double MinValue { get; init; }
public required int MinValueIteration { get; init; }
public required double MaxValue { get; init; }
public required int MaxValueIteration { get; init; }
public double? MinValue { get; init; }
public int? MinValueIteration { get; init; }
public double? MaxValue { get; init; }
public int? MaxValueIteration { get; init; }
}

0 comments on commit 5053742

Please sign in to comment.