Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ObjectUserSetting.cs
2
4{
9 {
10 private object value = null;
11
16 {
17 }
18
25 public ObjectUserSetting(string User, string Key, object Value)
26 : base(User, Key)
27 {
28 this.value = Value;
29 }
30
34 [DefaultValueNull]
35 public object Value
36 {
37 get => this.value;
38 set => this.value = value;
39 }
40
45 public override object GetValueObject()
46 {
47 return this.value;
48 }
49 }
50}
override object GetValueObject()
Gets the value of the setting, as an object.
ObjectUserSetting(string User, string Key, object Value)
Object user setting object.
Base abstract class for user settings.
Definition: UserSetting.cs:14