nomanHasan
9/15/2017 - 9:26 PM

todo.model.ts

class ToDo {
    _id:string;
    title: string;
    description: string;
    date: Date;
    status: string;

    constructor(
    ){
        this.title = ""
        this.description = ""
        this.date = new Date()
        this.status = ""
    }
}

export default ToDo;