Skip to content

Commit

Permalink
Feature: Add Device Navigation to Healthcheck Datum (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
willsawyerrrr authored Oct 1, 2024
2 parents 5761672 + bf1d140 commit 8b15c57
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion Mortein.Types/HealthcheckDatum.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ public class HealthcheckDatum
public Guid DeviceId { get; set; }

/// <summary>
/// The timestamp for this data.
/// The device represented by this datum
/// </summary>
public Device Device { get; set; } = null!;

/// <summary>
/// The timestamp for this datum.
/// </summary>
public required Instant Timestamp { get; set; }

Expand Down
2 changes: 1 addition & 1 deletion Mortein.Types/Mortein.Types.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>

<Version>1.2.0</Version>
<Version>1.3.0</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 8b15c57

Please sign in to comment.