Skip to content

Instantly share code, notes, and snippets.

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