Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IUser.cs
1namespace Waher.Security
2{
6 public interface IUser
7 {
11 string UserName
12 {
13 get;
14 }
15
20 {
21 get;
22 }
23
28 {
29 get;
30 }
31
37 bool HasPrivilege(string Privilege);
38 }
39}
Basic interface for a user.
Definition: IUser.cs:7
string PasswordHashType
Type of password hash. The empty stream means a clear-text password.
Definition: IUser.cs:28
string UserName
User Name.
Definition: IUser.cs:12
bool HasPrivilege(string Privilege)
If the user has a given privilege.
string PasswordHash
Password Hash
Definition: IUser.cs:20