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 : IHasPrivileges
7 {
11 string UserName
12 {
13 get;
14 }
15
20 {
21 get;
22 }
23
28 {
29 get;
30 }
31
36 {
37 get;
38 }
39
44 {
45 get;
46 }
47 }
48}
Interface for objects that have privileges.
Basic interface for a user.
Definition: IUser.cs:7
string FederatedUserName
Full Federated User Name.
Definition: IUser.cs:20
string PasswordHashType
Type of password hash. The empty stream means a clear-text password.
Definition: IUser.cs:44
string UserName
User Name.
Definition: IUser.cs:12
string FriendlyName
Friendly name of the user, for display purposes.
Definition: IUser.cs:28
string PasswordHash
Password Hash
Definition: IUser.cs:36