Skip to content

Instantly share code, notes, and snippets.

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