interface User {
    created_at: string;
    email: string;
    firstname: string;
    id: string;
    lastname: string;
    password: string;
    role: UserRole;
    surveys: Survey[];
    updated_at: string;
}

Properties

created_at: string
email: string
firstname: string
id: string
lastname: string
password: string
role: UserRole
surveys: Survey[]
updated_at: string