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

11 lines
280 B
TypeScript
Raw Normal View History

import { Vote } from './vote.model';
import { Owner } from './owner.model';
export class Stack {
public id: number;
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[] = [];
}