Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Owner.cs
1using System;
2
4{
8 public class Owner : Admin
9 {
13 public override string Name => "owner";
14
18 public override bool EditAdminList => true;
19
23 public override bool EditOwnerList => true;
24
28 public override bool ChangeRoomConfiguration => true;
29
33 public override bool DestroyRoom => true;
34 }
35}
override string Name
Name of affiliation, in XML.
Definition: Owner.cs:13
override bool EditOwnerList
If the user can edit the owner list
Definition: Owner.cs:23
override bool EditAdminList
If the user can edit the admin list
Definition: Owner.cs:18
override bool ChangeRoomConfiguration
If the user can change the room configuration
Definition: Owner.cs:28
override bool DestroyRoom
If the user can destroy a room
Definition: Owner.cs:33