Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IfStringValue.cs
2
4{
5 public abstract class IfStringValue : Rule
6 {
7 private string value = string.Empty;
8
9 public IfStringValue()
10 : base()
11 {
12 }
13
14 [DefaultValueStringEmpty]
15 public string Value
16 {
17 get => this.value;
18 set => this.value = value;
19 }
20 }
21}
Abstract base class for rules.
Definition: Rule.cs:12