Generated by DocFX

Class NFTCacheDto

Class offers way how to store the loaded NFT data for the recovering of the NFT after reload without requesting API

Inheritance
System.Object
NFTCacheDto
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite.NFT.Dto
Assembly: VEDriversLite.dll
Syntax
public class NFTCacheDto

Properties

| Improve this Doc View Source

Address

Address which owns NFT

Declaration
public string Address { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

FirstSave

indicate when the NFT was saved in the cash first time

Declaration
public DateTime FirstSave { get; set; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

LastAccess

Last time when the NFT was loaded from the cash this helps to remove old not used NFTs from the cache

Declaration
public DateTime LastAccess { get; set; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

Metadata

Metadata of the NFT

Declaration
public IDictionary<string, string> Metadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IDictionary<System.String, System.String>
| Improve this Doc View Source

NFTType

NFT type

Declaration
public NFTTypes NFTType { get; set; }
Property Value
Type Description
NFTTypes
| Improve this Doc View Source

NumberOfReads

Number of read of this NFT, good for check if it is used and remove if not

Declaration
public int NumberOfReads { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Utxo

NFT Utxo

Declaration
public string Utxo { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

UtxoIndex

NFT Utxo Index

Declaration
public int UtxoIndex { get; set; }
Property Value
Type Description
System.Int32