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 SourceAddress
Address which owns NFT
Declaration
public string Address { get; set; }
Property Value
Type | Description |
---|---|
System.String |
FirstSave
indicate when the NFT was saved in the cash first time
Declaration
public DateTime FirstSave { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
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 |
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> |
NFTType
NFT type
Declaration
public NFTTypes NFTType { get; set; }
Property Value
Type | Description |
---|---|
NFTTypes |
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 |
Utxo
NFT Utxo
Declaration
public string Utxo { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UtxoIndex
NFT Utxo Index
Declaration
public int UtxoIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |