frontend/src/models/Card.ts

14 lines
314 B
TypeScript
Raw Normal View History

2019-07-06 22:04:33 +02:00
export class Card {
public text: string;
public pick: number;
public deck: string;
public icon: string;
public constructor(text: string, pick: number, deck: string, icon: string) {
this.deck = deck;
this.icon = icon;
this.pick = pick;
this.text = text;
}
}