Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
KycOption.cs
1
namespace
NeuroAccessMaui.Services.Kyc.Models
2
{
3
public
class
KycOption
4
{
5
public
KycOption
(
string
value,
KycLocalizedText
label)
6
{
7
this.Value = value;
8
this.Label = label;
9
}
10
11
public
string
Value {
get
; }
12
public
KycLocalizedText
Label {
get
; }
13
public
string
GetLabel(
string
? lang =
null
)
14
{
15
return
this.Label.
Get
(lang) ?? this.Value;
16
}
17
}
18
}
NeuroAccessMaui.Services.Kyc.Models.KycLocalizedText
Represents a set of localized strings, addressable by language code (e.g. "en", "sv").
Definition:
KycLocalizedText.cs:11
NeuroAccessMaui.Services.Kyc.Models.KycLocalizedText.Get
string? Get(string? Lang)
Gets a localized value for a specific language.
Definition:
KycLocalizedText.cs:43
NeuroAccessMaui.Services.Kyc.Models.KycOption
Definition:
KycOption.cs:4
NeuroAccessMaui.Services.Kyc.Models
Definition:
KycCondition.cs:5
NeuroAccessMaui
NeuroAccessMaui
Services
Kyc
Models
KycOption.cs
Generated by
1.9.5