Table of Contents

Class IntegrityResult

Namespace
JD.AI.Core.Sessions
Assembly
JD.AI.Core.dll

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

SessionsChecked int
MismatchesFound int
Issues ReadOnlyCollection<string>

Properties

Issues

public ReadOnlyCollection<string> Issues { get; init; }

Property Value

ReadOnlyCollection<string>

MismatchesFound

public int MismatchesFound { get; init; }

Property Value

int

SessionsChecked

public int SessionsChecked { get; init; }

Property Value

int