mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
11 lines
291 B
TypeScript
11 lines
291 B
TypeScript
import { Vote } from './vote.model';
|
|
import { Owner } from './owner.model';
|
|
|
|
export class Stack {
|
|
public id: number;
|
|
public pseudo: string = 'Choque Nourrice';
|
|
public comment: string = 'Le beau commentaire de Choque Nourrice';
|
|
public owner: Owner = new Owner();
|
|
public votes: Vote[];
|
|
}
|