funky-framadate-front/src/app/core/models/user.model.ts

11 lines
190 B
TypeScript
Raw Normal View History

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