projects/netgrif-components-core/src/lib/user/models/iuser.ts
A generic representation of a User object. All User and User-like instances implement this interface that holds the most basic User attributes.
Properties |
email:
|
Type : string
|
Example: example@netgrif.com |
id |
id:
|
Type : string
|
name |
name:
|
Type : string
|
Example: Example |
surname |
surname:
|
Type : string
|
Example: Netgrif |
export interface IUser {
id: string;
/**
* **Example:** example@netgrif.com
*/
email: string;
/**
* **Example:** Example
*/
name: string;
/**
* **Example:** Netgrif
*/
surname: string;
}