Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObservableCountryField.cs
3
5{
10 {
11 public override string? StringValue
12 {
13 get => this.CountryCode;
14 set => this.CountryCode = value;
15 }
16
17 public string? CountryCode
18 {
19 get
20 {
21 if (this.RawValue is KycOption Option)
22 return Option.Value;
23
24 return null;
25 }
26 set => this.RawValue = value;
27 }
28 }
29}
The base KYC field model. Use as-is for generic fields, or subclass for custom logic.