import { MemoryCategory } from "../memories"; import { UserDetail } from "./detail"; import { Role } from "./role"; export interface User { id: string; picture: string; email: string; firstName: string; lastName: string; active: boolean; detail?: UserDetail; onboardingCompleted: boolean; roles: Role[]; preferences: MemoryCategory[]; createdAt: Date; updatedAt: Date; }