Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServiceField.cs
2
3namespace Paiwise.Internal
4{
8 public class ServiceField
9 {
17 {
18 this.FieldId = FieldId;
19 this.DataType = DataType;
20 this.Required = Required;
21 }
22
27
32
36 public bool Required { get; }
37 }
38}
Represents a field in a service.
Definition: ServiceField.cs:9
CaseInsensitiveString DataType
Data Type of field
Definition: ServiceField.cs:31
bool Required
If the field is required or not.
Definition: ServiceField.cs:36
ServiceField(CaseInsensitiveString FieldId, CaseInsensitiveString DataType, bool Required)
Represents a field in a service.
Definition: ServiceField.cs:16
CaseInsensitiveString FieldId
Field ID
Definition: ServiceField.cs:26
Represents a case-insensitive string.