Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PetitionPeerReviewNavigationArgs.cs
3
5{
15 public class PetitionPeerReviewNavigationArgs(LegalIdentity? RequestorIdentity, string? RequestorFullJid = null,
16 string? RequestedIdentityId = null, string? PetitionId = null, string? Purpose = null, byte[]? ContentToSign = null) : NavigationArgs
17 {
21 public PetitionPeerReviewNavigationArgs() : 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
51 public byte[]? ContentToSign { get; } = ContentToSign;
52 }
53}
An base class holding page specific navigation parameters.