Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
UpdatingLegalIdEventArgs.cs
1using System;
2
4{
9 public class UpdatingLegalIdEventArgs : EventArgs
10 {
19 {
20 this.OldLegalId = OldLegalId;
21 this.NewLegalId = NewLegalId;
22 this.User = User;
23 }
24
28 public string OldLegalId { get; }
29
33 public string NewLegalId { get; }
34
38 public User User { get; }
39 }
40}
Corresponds to a user in the system.
Definition: User.cs:24