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

13 lines
340 B
TypeScript

import { Vote } from './vote.model';
import { Owner } from './owner.model';
export class Stack {
public id: number;
public poll_custom_url: string;
public pass_hash: string;
public pseudo = 'Choque Nourrice';
public comment = 'Le beau commentaire de Choque Nourrice';
public owner: Owner = new Owner();
public votes: Vote[] = [];
}