Class DiscoveredContract
- Namespace
- NArk.Abstractions.Recovery
- Assembly
- NArk.Abstractions.dll
A single contract that recovery reconstructed, with the index it came from and the provider that detected it.
public record DiscoveredContract : IEquatable<DiscoveredContract>
- Inheritance
-
DiscoveredContract
- Implements
- Inherited Members
Constructors
DiscoveredContract(int, string, ArkContract)
A single contract that recovery reconstructed, with the index it came from and the provider that detected it.
public DiscoveredContract(int Index, string ProviderName, ArkContract Contract)
Parameters
IndexintProviderNamestringContractArkContract
Properties
Contract
public ArkContract Contract { get; init; }
Property Value
Index
public int Index { get; init; }
Property Value
ProviderName
public string ProviderName { get; init; }