Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ViewContractNavigationArgs.cs
3
5{
13 public class ViewContractNavigationArgs(Contract? Contract, bool IsReadOnly, string? Role, string? Proposal) : NavigationArgs
14 {
18 public ViewContractNavigationArgs()
19 : this(null, false)
20 {
21 }
22
28 public ViewContractNavigationArgs(Contract? Contract, bool IsReadOnly)
29 : this(Contract, IsReadOnly, null, string.Empty)
30 {
31 }
32
36 public Contract? Contract { get; } = Contract;
37
41 public bool IsReadOnly { get; } = IsReadOnly;
42
46 public string? Role { get; } = Role;
47
51 public string? Proposal { get; } = Proposal;
52 }
53}
An base class holding page specific navigation parameters.
Contains the definition of a contract
Definition: Contract.cs:22
Class defining a role
Definition: Role.cs:7