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; } }