/**
 * Object from Backend
 */
export interface Author {
    /**
     * **Example:** example@netgrif.com
     */
    email: string;
    /**
     * First name + " " + Surname
     *
     * **Example:** Example Netgrif
     */
    fullName: string;
}
