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

13 lines
340 B
TypeScript
Raw Normal View History

import { Vote } from './vote.model';
import { Owner } from './owner.model';
export class Stack {
public id: number;
2021-06-07 11:30:10 +02:00
public poll_custom_url: string;
public pass_hash: string;
2021-05-20 12:51:25 +02:00
public pseudo = 'Choque Nourrice';
public comment = 'Le beau commentaire de Choque Nourrice';
public owner: Owner = new Owner();
2021-05-20 12:51:25 +02:00
public votes: Vote[] = [];
}