Class RunHistoryEntry
- Namespace
- Cress.LivingDocs
- Assembly
- Cress.LivingDocs.dll
public sealed record RunHistoryEntry : IEquatable<RunHistoryEntry>
- Inheritance
-
RunHistoryEntry
- Implements
- Inherited Members
Constructors
RunHistoryEntry(string, DateTimeOffset, int, int)
public RunHistoryEntry(string RunId, DateTimeOffset Timestamp, int PassedCount, int FailedCount)
Parameters
RunIdstringTimestampDateTimeOffsetPassedCountintFailedCountint
Properties
FailedCount
public int FailedCount { get; init; }
Property Value
PassedCount
public int PassedCount { get; init; }
Property Value
RunId
public string RunId { get; init; }
Property Value
Timestamp
public DateTimeOffset Timestamp { get; init; }