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

13 lines
326 B
TypeScript
Raw Normal View History

import { Vote } from './vote.model';
import { Owner } from './owner.model';
export class Stack {
public id: number;
2022-02-11 09:19:34 +01:00
public custom_url: string;
public pass_hash: string;
2021-05-20 12:51:25 +02:00
public pseudo = 'Choque Nourrice';
2022-02-14 14:37:42 +01:00
public comment = 'Le beau commentaire tout neuf';
public owner: Owner = new Owner();
2021-05-20 12:51:25 +02:00
public votes: Vote[] = [];
}