projects/netgrif-components-core/src/lib/resources/interface/author.ts
Object from Backend
Properties |
email:
|
Type : string
|
Example: example@netgrif.com |
fullName |
fullName:
|
Type : string
|
First name + " " + Surname Example: Example Netgrif |
export interface Author {
/**
* **Example:** example@netgrif.com
*/
email: string;
/**
* First name + " " + Surname
*
* **Example:** Example Netgrif
*/
fullName: string;
}