Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PetitionIdentityNavigationArgs.cs
3
5{
14 public class PetitionIdentityNavigationArgs(LegalIdentity? RequestorIdentity,
15 string? RequestorFullJid = null, string? RequestedIdentityId = null,
16 string? PetitionId = null, string? Purpose = null) : NavigationArgs
17 {
21 public PetitionIdentityNavigationArgs() : this(null) { }
22
26 public LegalIdentity? RequestorIdentity { get; } = RequestorIdentity;
27
31 public string? RequestorFullJid { get; } = RequestorFullJid;
32
36 public string? RequestedIdentityId { get; } = RequestedIdentityId;
37
41 public string? PetitionId { get; } = PetitionId;
42
46 public string? Purpose { get; } = Purpose;
47 }
48}
An base class holding page specific navigation parameters.