Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
TransferCode.cs
1using System;
3
5{
9 [CollectionName("AgentTransferCodes")]
10 [Index("Code")]
11 [Index("Created")]
12 public class TransferCode
13 {
17 public TransferCode()
18 {
19 }
20
24 [ObjectId]
25 public string ObjectId { get; set; }
26
30 public string Code { get; set; }
31
35 public DateTime Created { get; set; }
36
40 public string Account { get; set; }
41
45 public string Token { get; set; }
46 }
47}
Contains information about an Agent Transfer code.
Definition: TransferCode.cs:13
string Account
Account the code is associated with.
Definition: TransferCode.cs:40
TransferCode()
Contains information about an Agent Transfer code.
Definition: TransferCode.cs:17