import { UserRole } from '../enums/user-role.enum'; import { Poll } from './poll.model'; export class User { constructor( public pseudo: string, public email: string, public role: UserRole = UserRole.ANONYMOUS, public isOwner: boolean = false, public polls?: Poll[] ) {} }