Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OnboardingTransferContext.cs
1using System.Xml;
2
4{
8 internal sealed class OnboardingTransferContext
9 {
10 public OnboardingTransferContext(string accountName, string password, string passwordMethod, XmlElement? legalIdDefinition)
11 {
12 this.AccountName = accountName;
13 this.Password = password;
14 this.PasswordMethod = passwordMethod;
15 this.LegalIdDefinition = legalIdDefinition;
16 }
17
21 public string AccountName { get; }
22
26 public string Password { get; }
27
31 public string PasswordMethod { get; }
32
36 public XmlElement? LegalIdDefinition { get; }
37
41 public bool HasLegalIdentity => this.LegalIdDefinition is not null;
42 }
43}