Skip to content

Instantly share code, notes, and snippets.

@kutliev
Created February 11, 2018 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kutliev/dec46e182cc58b5c8436668995c1ed79 to your computer and use it in GitHub Desktop.
Save kutliev/dec46e182cc58b5c8436668995c1ed79 to your computer and use it in GitHub Desktop.
Entity class
export class Entity {
id: string;
title: string;
slug: string;
content: string;
constructor(id: string, title: string, slug: string, content: string) {
this.id = id;
this.title = title;
this.slug = slug;
this.content = content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment