/**
 *
 * @export
 * @interface AccountEmailVerification
 */
export interface AccountEmailVerification {
    /**
     *
     * @type {boolean}
     * @memberof AccountEmailVerification
     */
    verified: boolean;
    /**
     *
     * @type {number}
     * @memberof AccountEmailVerification
     */
    lastRequestDate: number;
}
