Class IntegrityResult
Result of an integrity check across SQLite store and JSON exports.
public sealed record IntegrityResult : IEquatable<IntegrityResult>
- Inheritance
-
IntegrityResult
- Implements
- Inherited Members
Constructors
IntegrityResult(int, int, ReadOnlyCollection<string>)
Result of an integrity check across SQLite store and JSON exports.
public IntegrityResult(int SessionsChecked, int MismatchesFound, ReadOnlyCollection<string> Issues)
Parameters
SessionsCheckedintMismatchesFoundintIssuesReadOnlyCollection<string>
Properties
Issues
public ReadOnlyCollection<string> Issues { get; init; }
Property Value
MismatchesFound
public int MismatchesFound { get; init; }
Property Value
SessionsChecked
public int SessionsChecked { get; init; }