src/app/_models/staff.ts
Staff object interface
Properties |
comment |
comment:
|
Type : string
|
Comment made on the public key. |
email:
|
Type : string
|
Email used to create the public key. |
name |
name:
|
Type : string
|
Name of the owner of the public key |
tag |
tag:
|
Type : number
|
Tags added to the public key. |
userid |
userid:
|
Type : string
|
User ID of the owner of the public key. |
interface Staff {
/** Comment made on the public key. */
comment: string;
/** Email used to create the public key. */
email: string;
/** Name of the owner of the public key */
name: string;
/** Tags added to the public key. */
tag: number;
/** User ID of the owner of the public key. */
userid: string;
}
/** @exports */
export { Staff };