Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
VaultItemReference.cs
1using System;
3
5{
9 [CollectionName("VaultItemReferences")]
10 [Index("VaultIdReference")]
11 public class VaultItemReference
12 {
17 {
18 }
19
23 [ObjectId]
24 public string ObjectId { get; set; }
25
29 public byte[] VaultId { get; set; }
30
34 public string KeyId { get; set; }
35
39 public int UseCount { get; set; }
40
44 public DateTime Expires { get; set; }
45
49 public bool Masked { get; set; }
50
54 [Encrypted(32)]
55 public string Seed { get; set; }
56 }
57}
bool Masked
If referenced vault item should be returned masked (true) or unmasked (false).