Table of Contents

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

Index int
ProviderName string
Contract ArkContract

Properties

Contract

public ArkContract Contract { get; init; }

Property Value

ArkContract

Index

public int Index { get; init; }

Property Value

int

ProviderName

public string ProviderName { get; init; }

Property Value

string