blob: a1d0a768b77984b9735937408e7bb6c68548777d [file] [log] [blame]
export class Todo {
id: number;
title: string = '';
complete: boolean = false;
constructor(values: Object = {}) {
Object.assign(this, values);
}
}