Created
September 17, 2017 15:53
-
-
Save philipszdavido/11da556fd08c1a86d389198cd4683a49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/app/redux/models/article | |
export class Article { | |
id: number | |
link : string | |
title : string | |
points : number | |
constructor(id: number, title: string, link: string, points?: number) { | |
this.id = id | |
this.title = title; | |
this.link = link; | |
this.points = points || 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment