Skip to content

Instantly share code, notes, and snippets.

@dvallin
Created November 29, 2017 16:46
Show Gist options
  • Save dvallin/f7ebf5b4cae435ade1a48d54f929e526 to your computer and use it in GitHub Desktop.
Save dvallin/f7ebf5b4cae435ade1a48d54f929e526 to your computer and use it in GitHub Desktop.
export class Task {
id: string;
title: string;
constructor(id: string, title: string) {
this.id = id;
this.title = title;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment